diff options
Diffstat (limited to 'test/run-test')
| -rwxr-xr-x | test/run-test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/run-test b/test/run-test index e46099d2e2..f60f766751 100755 --- a/test/run-test +++ b/test/run-test @@ -137,6 +137,7 @@ trace_stream="false" basic_verify="false" gc_verify="false" gc_stress="false" +jvmti_stress="false" strace="false" always_clean="no" never_clean="no" @@ -233,6 +234,9 @@ while true; do basic_verify="true" gc_stress="true" shift + elif [ "x$1" = "x--jvmti-stress" ]; then + jvmti_stress="true" + shift elif [ "x$1" = "x--suspend-timeout" ]; then shift suspend_timeout="$1" @@ -443,6 +447,9 @@ fi if [ "$gc_stress" = "true" ]; then run_args="${run_args} --gc-stress --runtime-option -Xgc:gcstress --runtime-option -Xms2m --runtime-option -Xmx16m" fi +if [ "$jvmti_stress" = "true" ]; then + run_args="${run_args} --no-app-image --jvmti-stress" +fi if [ "$trace" = "true" ]; then run_args="${run_args} --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file-size:2000000" if [ "$trace_stream" = "true" ]; then @@ -651,6 +658,7 @@ if [ "$usage" = "yes" ]; then echo " --stream Run method tracing in streaming mode (requires --trace)" echo " --gcstress Run with gc stress testing" echo " --gcverify Run with gc verification" + echo " --jvmti-stress Run with jvmti stress testing" echo " --always-clean Delete the test files even if the test fails." echo " --never-clean Keep the test files even if the test succeeds." echo " --android-root [path] The path on target for the android root. (/system by default)." |