diff options
author | David Mason <davmason@microsoft.com> | 2019-01-14 20:48:49 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-14 20:48:49 -0800 |
commit | 9a778de6d0587e6bcabb34c43cf24b175735e2e7 (patch) | |
tree | 438614cb99a89944a0f10c84435736b517edd3a3 /tests | |
parent | 9fe3286e3810298934315e999580edd78c3322c2 (diff) | |
download | coreclr-9a778de6d0587e6bcabb34c43cf24b175735e2e7.tar.gz coreclr-9a778de6d0587e6bcabb34c43cf24b175735e2e7.tar.bz2 coreclr-9a778de6d0587e6bcabb34c43cf24b175735e2e7.zip |
fix the help message for runtest.sh so the gcstress instructions aren't split across multiple lines (#21989)
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtest.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtest.sh b/tests/runtest.sh index a6faf134d1..3eda9ece2a 100755 --- a/tests/runtest.sh +++ b/tests/runtest.sh @@ -30,12 +30,12 @@ function print_usage { echo ' --jitforcerelocs : Runs the tests with COMPlus_ForceRelocs=1' echo ' --jitdisasm : Runs jit-dasm on the tests' echo ' --gcstresslevel=<n> : Runs the tests with COMPlus_GCStress=n' - echo ' --gcname=<n> : Runs the tests with COMPlus_GCName=n' - echo ' --ilasmroundtrip : Runs ilasm round trip on the tests' echo ' 0: None 1: GC on all allocs and '"'easy'"' places' echo ' 2: GC on transitions to preemptive GC 4: GC on every allowable JITed instr' echo ' 8: GC on every allowable NGEN instr 16: GC only on a unique stack trace' + echo ' --gcname=<n> : Runs the tests with COMPlus_GCName=n' echo ' --long-gc : Runs the long GC tests' + echo ' --ilasmroundtrip : Runs ilasm round trip on the tests' echo ' --gcsimulator : Runs the GCSimulator tests' echo ' --tieredcompilation : Runs the tests with COMPlus_TieredCompilation=1' echo ' --link <ILlink> : Runs the tests after linking via ILlink' |