summaryrefslogtreecommitdiff
path: root/tests/runtest.cmd
diff options
context:
space:
mode:
authorSejong Oh <sejooh@microsoft.com>2016-05-04 14:06:16 -0700
committerSejong Oh <sejooh@microsoft.com>2016-05-16 18:00:29 -0700
commit3fa109c73de2b56059f8b7204503efab40d66d86 (patch)
treed9b511eb1cae2a80f9822e797cc3ff2488b5ec0b /tests/runtest.cmd
parentaf1961073ba02f76c58a86f5528066e5813c2bb1 (diff)
downloadcoreclr-3fa109c73de2b56059f8b7204503efab40d66d86.tar.gz
coreclr-3fa109c73de2b56059f8b7204503efab40d66d86.tar.bz2
coreclr-3fa109c73de2b56059f8b7204503efab40d66d86.zip
Always download coredistools package
runtest.sh/cmd currently downloads the coredistools package if COMPlus_GCStress variable is set by TestEnv or test-env options. This is a bit complicated and this doesn't work with a new option for GC stress testing in build/buildtest.cmd. This changeset moves downloading the coredistools package to buildtest.cmd where it takes gcstress option and downloads other packages. Linux build doesn't have buildtest.sh, so package donwloading is still in runtest.sh
Diffstat (limited to 'tests/runtest.cmd')
-rw-r--r--tests/runtest.cmd12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/runtest.cmd b/tests/runtest.cmd
index d894c8e080..e5f6262ec8 100644
--- a/tests/runtest.cmd
+++ b/tests/runtest.cmd
@@ -300,18 +300,6 @@ if "%CORE_ROOT%" == "" (
echo %__MsgPrefix%Error: Ensure you have done a successful build of the Product and Run - runtest BuildArch BuildType {path to product binaries}.
exit /b 1
)
-:: Pull down dependent packages needed for testing
-setlocal
-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 /arch %__BuildArch% /outputdir %CORE_ROOT%
- if errorlevel 1 (
- echo Failed to donwload runtime packages
- exit /b 1
- )
-)
:: Long GC tests take about 10 minutes per test on average, so
:: they often bump up against the default 10 minute timeout.