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:
authorIan Hays <ianha@microsoft.com>2016-04-19 23:08:54 +0300
committerIan Hays <ianha@microsoft.com>2016-04-19 23:08:54 +0300
commitbfed4ca40bc3be0baf204ab29ca0809e606cab06 (patch)
tree6edb7559422ee20c2f90f1487e15993b655df05a /run-test.cmd
parentf85c512ecdade5e96476860e7740d32e3da37126 (diff)
Update netci and run-test to use the IgnoreForCI trait in Jenkins
pdates the netci.groovy and runtest.sh files to pass -notrait Category=IgnoreForCI to build.cmd and run-test.sh in Jenkins so that we can disable tests from running when they're being run in Jenkins.
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 2d6c26c4cb..6e9e2edc0e 100644
--- a/run-test.cmd
+++ b/run-test.cmd
@@ -8,8 +8,8 @@ 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"
- corerun.exe xunit.console.netcore.exe %%F.dll -xml testResults.xml -notrait category=outerloop -notrait category=failing -notrait category=nonwindowstests -notrait Benchmark=true
+ @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
popd
)
)