Revert "Set jitthreshold to 0 with --jvmti"
This reverts commit fde2bb5e3968105c1fc9bcc8a9a32bc24bcc03a7.
Reason for revert: Reverting the temporary fix after a more longer term
workaround landed for asan deadlocks.
https://android-review.googlesource.com/c/platform/art/+/2176578
Change-Id: I206c7045556b6f5190e69e669c1445287d5a2ab3
diff --git a/test/etc/run-test-jar b/test/etc/run-test-jar
index c27c932..8d64ead 100755
--- a/test/etc/run-test-jar
+++ b/test/etc/run-test-jar
@@ -700,11 +700,11 @@
# needed anymore since the plugin can do it for us now.
FLAGS+=f" -Xplugin:{plugin}"
- # For jvmti tests, set the threshold of compilation to 0, so we jit early to
+ # For jvmti tests, set the threshold of compilation to 1, 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+=" -Xjitthreshold:0"
+ FLAGS+=" -Xjitthreshold:1"
# Add the libdir to the argv passed to the main function.
if ADD_LIBDIR_ARGUMENTS == "y":