From b9b4a64c11cecc9fa4be8e400e8489eeabb4a4c1 Mon Sep 17 00:00:00 2001 From: EgorBo Date: Tue, 4 Feb 2020 15:07:07 +0300 Subject: [PATCH] Clean up --- src/mono/mono.proj | 25 +++++++++++++++---------- src/mono/netcore/Makefile | 3 +++ 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/src/mono/mono.proj b/src/mono/mono.proj index 451cd8c..6b00636 100644 --- a/src/mono/mono.proj +++ b/src/mono/mono.proj @@ -15,6 +15,7 @@ <_CoreClrFileName Condition="'$(TargetsOSX)' == 'true'">libcoreclr.dylib <_CoreClrFileName Condition="'$(_CoreClrFileName)' == ''">libcoreclr.so $(Configuration) + $(ArtifactsDir)tests\coreclr\$(OSGroup).$(Platform).$(CoreClrTestConfig)\Tests\Core_Root @@ -62,8 +63,6 @@ <_MonoRuntimeFilePath Condition="'$(TargetsWindows)' == 'true' and '$(Platform)' == 'x86'">$(MonoObjDir)Win32\Bin\$(Configuration)\mono-2.0-sgen.dll <_MonoRuntimeFilePath Condition="'$(TargetsOSX)' == 'true'">$(MonoObjDir)mono\mini\.libs\libmonosgen-2.0.dylib <_MonoRuntimeFilePath Condition="'$(_MonoRuntimeFilePath)' == ''">$(MonoObjDir)mono\mini\.libs\libmonosgen-2.0.so - - @@ -109,24 +108,30 @@ - - - - + <_MonoRuntimeArtifacts Include="$(BinDir)\*.*" /> + + + + + @@ -135,7 +140,7 @@ - + diff --git a/src/mono/netcore/Makefile b/src/mono/netcore/Makefile index a103e21..47e3252 100644 --- a/src/mono/netcore/Makefile +++ b/src/mono/netcore/Makefile @@ -15,6 +15,9 @@ runtime: patch-local-dotnet: $(DOTNET) msbuild /t:PatchLocalDotnet ../mono.proj +restore-local-dotnet: + $(DOTNET) msbuild /t:RestoreLocalDotnet ../mono.proj + # run specific coreclr test, e.g.: # make run-tests-coreclr CoreClrTest="bash ../../artifacts/tests/coreclr/OSX.x64.Checked/JIT/opt/InstructionCombining/DivToMul/DivToMul.sh" run-tests-coreclr: -- 2.7.4