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:
authorLakshmi Priya Sekar <lasekar@microsoft.com>2016-04-14 01:40:22 +0300
committerLakshmi Priya Sekar <lasekar@microsoft.com>2016-04-14 01:40:22 +0300
commit0cf0765eea412d7c842857e30f83b4b18d7f82e6 (patch)
treec94dbdfb0eef0dae328edb0cf85e4074190ca90d /run-test.cmd
parentb84af11c2d10be88c037d23e0bd7041412cdd1fa (diff)
Run only dnxcore50 tests on nano.
Diffstat (limited to 'run-test.cmd')
-rw-r--r--run-test.cmd11
1 files changed, 7 insertions, 4 deletions
diff --git a/run-test.cmd b/run-test.cmd
index b7e78fbf5a..2d6c26c4cb 100644
--- a/run-test.cmd
+++ b/run-test.cmd
@@ -6,9 +6,12 @@
pushd %1
FOR /D %%F IN (*.Tests) DO (
-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"
-corerun.exe xunit.console.netcore.exe %%F.dll -xml testResults.xml -notrait category=outerloop -notrait category=failing -notrait category=nonwindowstests -notrait Benchmark=true
-popd )
+ 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"
+ corerun.exe xunit.console.netcore.exe %%F.dll -xml testResults.xml -notrait category=outerloop -notrait category=failing -notrait category=nonwindowstests -notrait Benchmark=true
+ popd
+ )
+)
popd