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-02-24 01:40:27 +0300
committerLakshmi Priya Sekar <lasekar@microsoft.com>2016-02-26 01:04:26 +0300
commit4ded9c9f9c5c7f7bf294b1bb0538644824c98eb4 (patch)
tree82a2cc42c1e0f5a9502c700431117acd2e72a99e /run-test.cmd
parentdd43e45d79159227e248f07c5c81a3710409be62 (diff)
Add Windows Nano Server outerloop job to Jenkins.
Diffstat (limited to 'run-test.cmd')
-rw-r--r--run-test.cmd14
1 files changed, 14 insertions, 0 deletions
diff --git a/run-test.cmd b/run-test.cmd
new file mode 100644
index 0000000000..9f416ed080
--- /dev/null
+++ b/run-test.cmd
@@ -0,0 +1,14 @@
+@echo off
+
+:: To run tests outside of MSBuild.exe
+:: %1 is the path to the tests\<OSConfig> folder
+
+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=failing -notrait category=nonwindowstests"
+corerun.exe xunit.console.netcore.exe %%F.dll -notrait category=failing -notrait category=nonwindowstests
+popd )
+
+popd \ No newline at end of file