summaryrefslogtreecommitdiff
path: root/tests/runtest.sh
diff options
context:
space:
mode:
authorAndon Andonov <anandono@microsoft.com>2018-07-09 10:45:24 -0700
committerGitHub <noreply@github.com>2018-07-09 10:45:24 -0700
commit7baedfdafb6979f48026ed7e01de4b6cc14b3bba (patch)
tree3f27c6abf39acb2629ef4d93b5e76f3210a95d8e /tests/runtest.sh
parent4349690ec1c81a28c14ba2801240c94f3f79dec4 (diff)
downloadcoreclr-7baedfdafb6979f48026ed7e01de4b6cc14b3bba.tar.gz
coreclr-7baedfdafb6979f48026ed7e01de4b6cc14b3bba.tar.bz2
coreclr-7baedfdafb6979f48026ed7e01de4b6cc14b3bba.zip
CoreFX CI Unix Staging commit (#18750)
* Modify netci.groovy * Add script exit codes * Ad PR Triggers for Ubuntu and OSX10.12 * Remove release PR triggers * Rename arch Remove IsJitStressTestScenario assert * Add correct asserts * Reformat conditions and add triggers for Release/Checked/Debug * Change %WORKSPACE% to \${WORKSPACE}
Diffstat (limited to 'tests/runtest.sh')
-rwxr-xr-xtests/runtest.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/runtest.sh b/tests/runtest.sh
index c63ed4a30b..58038f35f4 100755
--- a/tests/runtest.sh
+++ b/tests/runtest.sh
@@ -67,6 +67,10 @@ function print_usage {
echo ' is zero when launching this script. This option is intended for use in CI.'
echo ' --xunitOutputPath=<path> : Create xUnit XML report at the specifed path (default: <test root>/coreclrtests.xml)'
echo ''
+ echo 'CoreFX Test Options '
+ echo ' --corefxtests : Runs CoreFX tests'
+ echo ' --corefxtestsall : Runs all available CoreFX tests'
+ echo ''
echo 'Runtime Code Coverage options:'
echo ' --coreclr-coverage : Optional argument to get coreclr code coverage reports'
echo ' --coreclr-objs=<path> : Location of root of the object directory'
@@ -1168,6 +1172,12 @@ do
--runcrossgentests)
export RunCrossGen=1
;;
+ --corefxtests)
+ exit 0
+ ;;
+ --corefxtestsall)
+ exit 0
+ ;;
--sequential)
((maxProcesses = 1))
;;