We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47d5f54 commit 15b35a0Copy full SHA for 15b35a0
test/jdk/jdk/internal/vm/Continuation/java.base/java/lang/PreemptLiveFrames.java
@@ -69,9 +69,8 @@ public void test1() throws Exception {
69
do {
70
res = cont.tryPreempt(t0);
71
i++;
72
- } while (i < 20 && res == Continuation.PreemptStatus.TRANSIENT_FAIL_PINNED_NATIVE);
+ } while (i < 100 && res == Continuation.PreemptStatus.TRANSIENT_FAIL_PINNED_NATIVE);
73
assertEquals(res, Continuation.PreemptStatus.SUCCESS);
74
- // var res = cont.tryPreempt(t0);
75
// assertEquals(res, Continuation.PreemptStatus.SUCCESS);
76
} catch (InterruptedException e) {
77
throw new RuntimeException(e);
0 commit comments