diff options
| -rwxr-xr-x | test/etc/run-test-jar | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/etc/run-test-jar b/test/etc/run-test-jar index ef168ca871..7f251e5d50 100755 --- a/test/etc/run-test-jar +++ b/test/etc/run-test-jar @@ -650,11 +650,11 @@ if [ "$USE_JVMTI" = "y" ]; then # needed anymore since the plugin can do it for us now. FLAGS="${FLAGS} -Xplugin:${plugin}" - # For jvmti tests, set the threshold of compilation to 1, so we jit early to + # For jvmti tests, set the threshold of compilation to 0, so we jit early to # provide better test coverage for jvmti + jit. This means we won't run # the default --jit configuration but it is not too important test scenario for # jvmti tests. This is art specific flag, so don't use it with jvm. - FLAGS="${FLAGS} -Xjitthreshold:1" + FLAGS="${FLAGS} -Xjitthreshold:0" fi fi |