summaryrefslogtreecommitdiff
path: root/tests/runtest.cmd
diff options
context:
space:
mode:
authorSejong Oh <sejooh@microsoft.com>2016-03-28 13:41:42 -0700
committerSejong Oh <sejooh@microsoft.com>2016-03-28 15:07:59 -0700
commitb7f5398362e05e2ce6921af781ea4af7f3f75837 (patch)
tree5e19c9836ca5a0931dc3dc535bebcd62b3c5ba46 /tests/runtest.cmd
parente25eb2cc4e9fd8ea56364aad99c3be9f16f671d8 (diff)
downloadcoreclr-b7f5398362e05e2ce6921af781ea4af7f3f75837.tar.gz
coreclr-b7f5398362e05e2ce6921af781ea4af7f3f75837.tar.bz2
coreclr-b7f5398362e05e2ce6921af781ea4af7f3f75837.zip
Add architeture information to a script downloading coredistools
Diffstat (limited to 'tests/runtest.cmd')
-rw-r--r--tests/runtest.cmd10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/runtest.cmd b/tests/runtest.cmd
index 80ed02691a..8933fa388c 100644
--- a/tests/runtest.cmd
+++ b/tests/runtest.cmd
@@ -286,8 +286,16 @@ 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%
+@echo on
+ tests\setup-runtime-dependencies.cmd /arch %__BuildArch% /outputdir %CORE_ROOT%
+ if errorlevel 1 (
+ echo Failed to donwload runtime packages
+ exit /b 1
+ )
)
+
+exit /b 0
+
set __BuildLogRootName=Tests_GenerateRuntimeLayout
call :msbuild "%__ProjectFilesDir%\runtest.proj" /p:GenerateRuntimeLayout=true
if errorlevel 1 (