Skip to content

Commit 890bced

Browse files
author
Doug Lea
committedJul 14, 2022
8290264: java/util/concurrent/locks/Lock/OOMEInAQS.java fails with "exit code: 0"
Reviewed-by: dholmes, alanb, dcubed
1 parent 3ad3950 commit 890bced

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed
 

‎test/jdk/java/util/concurrent/locks/Lock/OOMEInAQS.java

+19-5
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,24 @@ public class OOMEInAQS extends Thread {
4949
static final Condition condition = mainLock.newCondition();
5050
static final CountDownLatch started = new CountDownLatch(1);
5151
static final CountDownLatch filled = new CountDownLatch(1);
52+
static final CountDownLatch canFill = new CountDownLatch(NTHREADS);
5253
static volatile Object data;
54+
static volatile Throwable exception;
5355
static int turn;
5456

5557
/**
5658
* For each of NTHREADS threads, REPS times: Take turns
57-
* executing. Introduce OOM using fillHeap during runs.
59+
* executing. Introduce OOM using fillHeap during runs. In
60+
* addition to testing AQS, the CountDownLatches ensure that
61+
* methods execute at least once before OutOfMemory occurs, to
62+
* avoid uncontrollable impact of OOME during class-loading.
5863
*/
5964
public static void main(String[] args) throws Throwable {
6065
OOMEInAQS[] threads = new OOMEInAQS[NTHREADS];
6166
for (int i = 0; i < NTHREADS; ++i)
6267
(threads[i] = new OOMEInAQS(i)).start();
6368
started.countDown();
69+
canFill.await();
6470
long t0 = System.nanoTime();
6571
data = fillHeap();
6672
filled.countDown();
@@ -69,6 +75,9 @@ public static void main(String[] args) throws Throwable {
6975
threads[i].join();
7076
data = null; // free heap before reporting and terminating
7177
System.gc();
78+
Throwable ex = exception;
79+
if (ex != null)
80+
throw ex;
7281
System.out.println(
7382
"fillHeap time: " + (t1 - t0) / 1000_000 +
7483
" millis, whole test time: " + (System.nanoTime() - t0) / 1000_000 +
@@ -89,21 +98,26 @@ public void run() {
8998
try {
9099
started.await();
91100
for (int i = 0; i < NREPS; i++) {
101+
lock.lock();
92102
try {
93-
lock.lock();
94103
while (turn != id)
95104
cond.await();
96105
turn = nextId;
97106
cond.signalAll();
98107
} finally {
99108
lock.unlock();
100109
}
101-
if (i == 2) // Subsequent AQS methods encounter OOME
110+
if (i == 2) { // Subsequent AQS methods encounter OOME
111+
canFill.countDown();
102112
filled.await();
113+
}
103114
}
104-
} catch (Throwable ex) { // Could be InterruptedExeption or OOME
105115
data = null;
106-
System.exit(0); // avoid getting stuck trying to recover
116+
System.gc(); // avoid getting stuck while exiting
117+
} catch (Throwable ex) {
118+
data = null;
119+
System.gc(); // avoid nested OOME
120+
exception = ex;
107121
}
108122
}
109123

0 commit comments

Comments
 (0)
Please sign in to comment.