summaryrefslogtreecommitdiff
path: root/tests/runtest.cmd
diff options
context:
space:
mode:
authorSejong OH <sejooh@microsoft.com>2016-03-30 18:23:15 -0700
committerSejong Oh <sejooh@microsoft.com>2016-03-31 02:22:21 -0700
commit7bbd985be6eb703a2e6f3822acae68c7305dd325 (patch)
treeadcf56611dcb3d4ba122f9c0ab0e75328ebc6870 /tests/runtest.cmd
parentd3502c29c511292d0c6046b1aafe87295d2372d9 (diff)
downloadcoreclr-7bbd985be6eb703a2e6f3822acae68c7305dd325.tar.gz
coreclr-7bbd985be6eb703a2e6f3822acae68c7305dd325.tar.bz2
coreclr-7bbd985be6eb703a2e6f3822acae68c7305dd325.zip
Fix tests/setup-runtime-dependencies.sh as per dotnet cli changes
Diffstat (limited to 'tests/runtest.cmd')
-rw-r--r--tests/runtest.cmd7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/runtest.cmd b/tests/runtest.cmd
index 80ed02691a..3979486050 100644
--- a/tests/runtest.cmd
+++ b/tests/runtest.cmd
@@ -286,8 +286,13 @@ if defined __TestEnv call %__TestEnv%
if defined COMPlus_GCStress set __Result=true
endlocal & set __IsGCTest=%__Result%
if "%__IsGCTest%"=="true" (
- call tests\setup-runtime-dependencies.cmd /outputdir %CORE_ROOT%
+ tests\setup-runtime-dependencies.cmd /arch %__BuildArch% /outputdir %CORE_ROOT%
+ if errorlevel 1 (
+ echo Failed to donwload runtime packages
+ exit /b 1
+ )
)
+
set __BuildLogRootName=Tests_GenerateRuntimeLayout
call :msbuild "%__ProjectFilesDir%\runtest.proj" /p:GenerateRuntimeLayout=true
if errorlevel 1 (