summaryrefslogtreecommitdiff
path: root/tests/runtest.sh
diff options
context:
space:
mode:
authornoahfalk <noahfalk@microsoft.com>2017-08-16 18:08:27 -0700
committernoahfalk <noahfalk@microsoft.com>2017-08-16 18:08:27 -0700
commitaf7f9e0e69365af2f7f2ca071248378ce5e76b75 (patch)
tree93bf114e6c5a6ad49ce090bfb271d0aa57522475 /tests/runtest.sh
parent3f6b572942f6a3c6297ded77de3d3c0634c9bfdc (diff)
downloadcoreclr-af7f9e0e69365af2f7f2ca071248378ce5e76b75.tar.gz
coreclr-af7f9e0e69365af2f7f2ca071248378ce5e76b75.tar.bz2
coreclr-af7f9e0e69365af2f7f2ca071248378ce5e76b75.zip
Fixes for code review feedback
Diffstat (limited to 'tests/runtest.sh')
-rwxr-xr-xtests/runtest.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/runtest.sh b/tests/runtest.sh
index 41c574fe71..8148f25724 100755
--- a/tests/runtest.sh
+++ b/tests/runtest.sh
@@ -58,6 +58,7 @@ function print_usage {
echo ' 8: GC on every allowable NGEN instr 16: GC only on a unique stack trace'
echo ' --long-gc : Runs the long GC tests'
echo ' --gcsimulator : Runs the GCSimulator tests'
+ echo ' --tieredcompilation : Runs the tests with COMPlus_EXPERIMENTAL_TieredCompilation=1'
echo ' --link <ILlink> : Runs the tests after linking via ILlink'
echo ' --show-time : Print execution sequence and running time for each test'
echo ' --no-lf-conversion : Do not execute LF conversion before running test script'
@@ -1019,6 +1020,9 @@ do
export ILLINK=${i#*=}
export DoLink=true
;;
+ --tieredcompilation)
+ export COMPlus_EXPERIMENTAL_TieredCompilation=1
+ ;;
--jitdisasm)
jitdisasm=1
;;