Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ellis <matell@microsoft.com>2016-05-04 04:27:12 +0300
committerMatt Ellis <matell@microsoft.com>2016-05-05 20:16:38 +0300
commit285fa026f9b5a535f6ea718d7aa0b2c6f5ccfcba (patch)
tree6719b607ebdde5c2a3e9cdc863813395dcfdded3 /run-test.cmd
parentc71f31c13846e199f00d555518101d362ceddf64 (diff)
Update run-tests.[sh|cmd] for universal runners
The build now generates a script that actually finishes layout out the tests and invokes CoreRun, so we need to invoke that instead of calling it ourselves.
Diffstat (limited to 'run-test.cmd')
-rw-r--r--run-test.cmd4
1 files changed, 2 insertions, 2 deletions
diff --git a/run-test.cmd b/run-test.cmd
index 6e9e2edc0e..40498d1cee 100644
--- a/run-test.cmd
+++ b/run-test.cmd
@@ -2,14 +2,14 @@
:: To run tests outside of MSBuild.exe
:: %1 is the path to the tests\<OSConfig> folder
+:: %2 is the path to the packages folder
pushd %1
FOR /D %%F IN (*.Tests) DO (
IF EXIST %%F\dnxcore50 (
pushd %%F\dnxcore50
- @echo "corerun.exe xunit.console.netcore.exe %%F.dll -xml testResults.xml -notrait category=outerloop -notrait category=failing -notrait category=nonwindowstests -notrait Benchmark=true -notrait category=IgnoreForCI"
- corerun.exe xunit.console.netcore.exe %%F.dll -xml testResults.xml -notrait category=outerloop -notrait category=failing -notrait category=nonwindowstests -notrait Benchmark=true -notrait category=IgnoreForCI
+ CALL RunTests.cmd %2
popd
)
)