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-03-02 00:59:46 +0300
committerLakshmi Priya Sekar <lasekar@microsoft.com>2016-03-02 01:07:47 +0300
commit021ced743af6b3040f5c82f3c2bb572e0c8b9ae2 (patch)
treed53d7da47ebd8502737e0e0fbbc1d78c10dd15e3 /run-test.sh
parent7500fb1a5ec832763d4c8e877b11e9c4e299f8ae (diff)
Separate linux outerloop OSes that can't build into new outerloop job.
Diffstat (limited to 'run-test.sh')
-rwxr-xr-xrun-test.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/run-test.sh b/run-test.sh
index cc1a7affa9..51db77080e 100755
--- a/run-test.sh
+++ b/run-test.sh
@@ -184,9 +184,9 @@ runtest()
echo
echo "Running tests in $dirName"
- echo "./corerun xunit.console.netcore.exe $testDllName -xml testResults.xml -notrait category=failing -notrait category=OuterLoop -notrait category=$xunitOSCategory" -notrait Benchmark=true
+ echo "./corerun xunit.console.netcore.exe $testDllName -xml testResults.xml -notrait category=failing $OuterLoop -notrait category=$xunitOSCategory" -notrait Benchmark=true
echo
- ./corerun xunit.console.netcore.exe $testDllName -xml testResults.xml -notrait category=failing -notrait category=OuterLoop -notrait category=$xunitOSCategory -notrait Benchmark=true
+ ./corerun xunit.console.netcore.exe $testDllName -xml testResults.xml -notrait category=failing $OuterLoop -notrait category=$xunitOSCategory -notrait Benchmark=true
exitCode=$?
if [ $exitCode -ne 0 ]
@@ -252,6 +252,7 @@ coreclr_code_coverage()
# Parse arguments
((serverGC = 0))
+OuterLoop="-notrait category=outerloop"
while [[ $# > 0 ]]
do
@@ -293,6 +294,9 @@ do
--useServerGC)
((serverGC = 1))
;;
+ --outerloop)
+ OuterLoop="-trait category=outerloop"
+ ;;
*)
;;
esac