Skip to content

Commit 15b35a0

Browse files
committedAug 26, 2021
Improve flaky test
1 parent 47d5f54 commit 15b35a0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎test/jdk/jdk/internal/vm/Continuation/java.base/java/lang/PreemptLiveFrames.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,8 @@ public void test1() throws Exception {
6969
do {
7070
res = cont.tryPreempt(t0);
7171
i++;
72-
} while (i < 20 && res == Continuation.PreemptStatus.TRANSIENT_FAIL_PINNED_NATIVE);
72+
} while (i < 100 && res == Continuation.PreemptStatus.TRANSIENT_FAIL_PINNED_NATIVE);
7373
assertEquals(res, Continuation.PreemptStatus.SUCCESS);
74-
// var res = cont.tryPreempt(t0);
7574
// assertEquals(res, Continuation.PreemptStatus.SUCCESS);
7675
} catch (InterruptedException e) {
7776
throw new RuntimeException(e);

0 commit comments

Comments
 (0)
Please sign in to comment.