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-07-11 23:16:00 +0300
committerLakshmi Priya Sekar <lasekar@microsoft.com>2016-07-11 23:16:00 +0300
commit285ad69b1cb2a914ccd809f29fce1d0e6ca3e0f1 (patch)
treecf9804602f6d355151ed14d01145a0bfec6478d9 /run-test.cmd
parent5473d68be9ca1398c42a441c1a0e8e6b0b1328db (diff)
Check for RunTest.cmd before running test on Nano.
Diffstat (limited to 'run-test.cmd')
-rw-r--r--run-test.cmd4
1 files changed, 3 insertions, 1 deletions
diff --git a/run-test.cmd b/run-test.cmd
index bd6f6e7d35..59b3d0491f 100644
--- a/run-test.cmd
+++ b/run-test.cmd
@@ -9,7 +9,9 @@ pushd %1
FOR /D %%F IN (*.Tests) DO (
IF EXIST %%F\netcoreapp1.0 (
pushd %%F\netcoreapp1.0
- CALL RunTests.cmd %2
+ IF EXIST RunTests.cmd (
+ CALL RunTests.cmd %2
+ )
popd
)
)