Skip to content

Commit 95d38bb

Browse files
committedApr 29, 2022
8285773: Replace Algorithms.eatMemory(...) with WB.fullGC() in vmTestbase/gc/gctests/ReferencesGC/ReferencesGC.java
Reviewed-by: tschatzl, kbarrett
1 parent cd8709e commit 95d38bb

File tree

1 file changed

+20
-24
lines changed

1 file changed

+20
-24
lines changed
 

‎test/hotspot/jtreg/vmTestbase/gc/gctests/ReferencesGC/ReferencesGC.java

+20-24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -30,8 +30,12 @@
3030
*
3131
* @library /vmTestbase
3232
* /test/lib
33+
* @build jdk.test.whitebox.WhiteBox
34+
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
3335
* @run main/othervm
34-
* -XX:-UseGCOverheadLimit
36+
* -Xbootclasspath/a:.
37+
* -XX:+UnlockDiagnosticVMOptions
38+
* -XX:+WhiteBoxAPI
3539
* gc.gctests.ReferencesGC.ReferencesGC
3640
* -range 200
3741
* -ratio 0.9
@@ -41,12 +45,11 @@
4145
package gc.gctests.ReferencesGC;
4246

4347
import java.lang.ref.*;
48+
49+
import jdk.test.whitebox.WhiteBox;
4450
import nsk.share.TestFailure;
45-
import nsk.share.gc.Algorithms;
4651
import nsk.share.gc.GC;
4752
import nsk.share.gc.ThreadedGCTest;
48-
import nsk.share.gc.gp.GarbageProducer;
49-
import nsk.share.gc.gp.GarbageUtils;
5053
import nsk.share.test.ExecutionController;
5154

5255
public class ReferencesGC extends ThreadedGCTest {
@@ -87,7 +90,6 @@ private class Worker implements Runnable {
8790
WeakReference wr[] = new WeakReference[RANGE];
8891
SoftReference sr[] = new SoftReference[RANGE];
8992
PhantomReference phr[] = new PhantomReference[RANGE];
90-
GarbageProducer gp = GarbageUtils.getArrayProducers().get(0);
9193
int iter = 0;
9294

9395
@Override
@@ -98,21 +100,16 @@ public void run() {
98100

99101
while (stresser.continueExecution()) {
100102
int totalLive = 0;
101-
try {
102-
refq = new ReferenceQueue();
103-
alive = new int[3];
104-
wrong = new int[3];
105-
for (int j = 0; j < RANGE; j++) {
106-
holder[j] = new CircularLinkedList();
107-
holder[j].addNelements(300);
108-
wr[j] = new WeakReference(holder[j], refq);
109-
sr[j] = new SoftReference(holder[j], refq);
110-
phr[j] = new PhantomReference(holder[j], refq);
111-
}
112-
} catch (OutOfMemoryError oome) {
113-
// we should just skip the test
114-
// the other thread could eat all memory
115-
continue;
103+
104+
refq = new ReferenceQueue();
105+
alive = new int[3];
106+
wrong = new int[3];
107+
for (int j = 0; j < RANGE; j++) {
108+
holder[j] = new CircularLinkedList();
109+
holder[j].addNelements(300);
110+
wr[j] = new WeakReference(holder[j], refq);
111+
sr[j] = new SoftReference(holder[j], refq);
112+
phr[j] = new PhantomReference(holder[j], refq);
116113
}
117114

118115
for (int i = 0; i < RANGE; i++) {
@@ -134,12 +131,11 @@ public void run() {
134131
holder[i] = null;
135132
}
136133

137-
Algorithms.eatMemory(stresser);
134+
// WB.fullGC() is guaranteed to clear all kinds of weak references.
135+
WhiteBox.getWhiteBox().fullGC();
138136
if (!stresser.continueExecution()) {
139137
break;
140138
}
141-
// At this point OOME was thrown and accordingly to spec
142-
// all weak refs should be processed
143139

144140
long waitTime = System.currentTimeMillis() + finalizationMaxTime;
145141
int totalQ = 0;

0 commit comments

Comments
 (0)
Please sign in to comment.