summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Mathieu Chartier <mathieuc@google.com> 2017-03-02 10:43:07 -0800
committer Mathieu Chartier <mathieuc@google.com> 2017-03-02 10:43:52 -0800
commita5df8afcf798cbb831021048ee48b476ce56f35f (patch)
tree3032a28fbc63c2afc322fbada57c9e88e1f1f2d1
parentf040eca7329382d48dc2b8bfc228ee3f27c9f13d (diff)
Increase gcloop threshold to 15
12 seems to be flaky for the JIT configuration. Bug: 35917229 Test: test-art-host Change-Id: Ia3bcd542d58f1dce16d2bc21cbee9f5d2650035f
-rw-r--r--test/154-gc-loop/src/Main.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/154-gc-loop/src/Main.java b/test/154-gc-loop/src/Main.java
index 2228ca2783..69015b65aa 100644
--- a/test/154-gc-loop/src/Main.java
+++ b/test/154-gc-loop/src/Main.java
@@ -38,7 +38,7 @@ public class Main {
}
} catch (Exception e) {}
System.out.println("Finalize count too large: " +
- ((finalizeCounter >= 12) ? Integer.toString(finalizeCounter) : "false"));
+ ((finalizeCounter >= 15) ? Integer.toString(finalizeCounter) : "false"));
}
private static native void backgroundProcessState();