Skip to content

Commit 8e4fab0

Browse files
committedApr 6, 2022
8284303: runtime/Thread/AsyncExceptionTest.java timed out
Reviewed-by: dcubed, kvn
1 parent 3cd3a83 commit 8e4fab0

File tree

1 file changed

+7
-55
lines changed

1 file changed

+7
-55
lines changed
 

‎test/hotspot/jtreg/runtime/Thread/AsyncExceptionTest.java

+7-55
Original file line numberDiff line numberDiff line change
@@ -24,76 +24,33 @@
2424
/**
2525
* @test
2626
* @bug 8283044
27+
* @requires vm.compiler1.enabled | vm.compiler2.enabled
2728
* @summary Stress delivery of asynchronous exceptions.
2829
* @library /test/lib /test/hotspot/jtreg
2930
* @build AsyncExceptionTest
30-
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
31-
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI AsyncExceptionTest
31+
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -Xcomp
32+
-XX:CompileCommand=dontinline,AsyncExceptionTest::internalRun2
33+
-XX:CompileCommand=compileonly,AsyncExceptionTest::internalRun1
34+
-XX:CompileCommand=compileonly,AsyncExceptionTest::internalRun2
35+
AsyncExceptionTest
3236
*/
3337

34-
import compiler.testlibrary.CompilerUtils;
35-
import compiler.whitebox.CompilerWhiteBoxTest;
3638
import java.util.concurrent.CountDownLatch;
37-
import sun.hotspot.WhiteBox;
3839

3940
public class AsyncExceptionTest extends Thread {
4041
private final static int DEF_TIME_MAX = 30; // default max # secs to test
4142
private final static String PROG_NAME = "AsyncExceptionTest";
4243

43-
public static final WhiteBox WB = WhiteBox.getWhiteBox();
44-
4544
public CountDownLatch exitSyncObj = new CountDownLatch(1);
4645
public CountDownLatch startSyncObj = new CountDownLatch(1);
4746

48-
private boolean realRun;
4947
private boolean firstEntry = true;
5048
private boolean receivedThreadDeathinInternal1 = false;
5149
private boolean receivedThreadDeathinInternal2 = false;
5250

53-
public void setDontInline(String method) {
54-
java.lang.reflect.Method m;
55-
try {
56-
m = AsyncExceptionTest.class.getMethod(method);
57-
} catch(NoSuchMethodException e) {
58-
throw new RuntimeException("Unexpected: " + e);
59-
}
60-
WB.testSetDontInlineMethod(m, true);
61-
}
62-
63-
public void checkCompLevel(String method) {
64-
int highestLevel = CompilerUtils.getMaxCompilationLevel();
65-
java.lang.reflect.Method m;
66-
try {
67-
m = AsyncExceptionTest.class.getMethod(method);
68-
} catch(NoSuchMethodException e) {
69-
throw new RuntimeException("Unexpected: " + e);
70-
}
71-
int compLevel = WB.getMethodCompilationLevel(m);
72-
while (compLevel < (highestLevel - 1)) {
73-
try {
74-
Thread.sleep(200);
75-
} catch (InterruptedException e) { /* ignored */ }
76-
compLevel = WB.getMethodCompilationLevel(m);
77-
}
78-
}
79-
8051
@Override
8152
public void run() {
8253
try {
83-
setDontInline("internalRun1");
84-
setDontInline("internalRun2");
85-
86-
int callCount = CompilerWhiteBoxTest.THRESHOLD;
87-
while (callCount-- > 0) {
88-
receivedThreadDeathinInternal2 = false;
89-
realRun = false;
90-
internalRun1();
91-
}
92-
checkCompLevel("internalRun1");
93-
checkCompLevel("internalRun2");
94-
95-
receivedThreadDeathinInternal2 = false;
96-
realRun = true;
9754
internalRun1();
9855
} catch (ThreadDeath td) {
9956
throw new RuntimeException("Catched ThreadDeath in run() instead of internalRun2() or internalRun1(). receivedThreadDeathinInternal1=" + receivedThreadDeathinInternal1 + "; receivedThreadDeathinInternal2=" + receivedThreadDeathinInternal2);
@@ -108,7 +65,6 @@ public void run() {
10865
}
10966

11067
public void internalRun1() {
111-
long start_time = System.currentTimeMillis();
11268
try {
11369
while (!receivedThreadDeathinInternal2) {
11470
internalRun2();
@@ -123,17 +79,13 @@ public void internalRun2() {
12379
Integer myLocalCount = 1;
12480
Integer myLocalCount2 = 1;
12581

126-
if (realRun && firstEntry) {
82+
if (firstEntry) {
12783
// Tell main thread we have started.
12884
startSyncObj.countDown();
12985
firstEntry = false;
13086
}
13187

13288
while(myLocalCount > 0) {
133-
if (!realRun) {
134-
receivedThreadDeathinInternal2 = true;
135-
break;
136-
}
13789
myLocalCount2 = (myLocalCount % 3) / 2;
13890
myLocalCount -= 1;
13991
}

0 commit comments

Comments
 (0)
Please sign in to comment.