Skip to content

Commit a28f410

Browse files
committedJul 23, 2020
8249787: Make TestGCLocker more resilient with concurrent GCs
Reviewed-by: eosterlund, tschatzl
1 parent 54ad4f9 commit a28f410

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed
 

‎test/hotspot/jtreg/gc/stress/gclocker/TestGCLocker.java

+9-7
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,14 @@ class MemoryWatcher {
8080
private final int criticalThresholdPromille = 800;
8181
private final int minGCWaitMS = 1000;
8282
private final int minFreeWaitElapsedMS = 30000;
83-
private final int minFreeCriticalWaitMS = 500;
83+
private final int minFreeCriticalWaitMS;
8484

8585
private int lastUsage = 0;
8686
private long lastGCDetected = System.currentTimeMillis();
8787
private long lastFree = System.currentTimeMillis();
8888

89-
public MemoryWatcher(String mxBeanName) {
89+
public MemoryWatcher(String mxBeanName, int minFreeCriticalWaitMS) {
90+
this.minFreeCriticalWaitMS = minFreeCriticalWaitMS;
9091
List<MemoryPoolMXBean> memoryBeans = ManagementFactory.getMemoryPoolMXBeans();
9192
for (MemoryPoolMXBean bean : memoryBeans) {
9293
if (bean.getName().equals(mxBeanName)) {
@@ -151,8 +152,8 @@ private void load() {
151152
cache.add(new Filler());
152153
}
153154

154-
public MemoryUser(String mxBeanName) {
155-
watcher = new MemoryWatcher(mxBeanName);
155+
public MemoryUser(String mxBeanName, int minFreeCriticalWaitMS) {
156+
watcher = new MemoryWatcher(mxBeanName, minFreeCriticalWaitMS);
156157
}
157158

158159
@Override
@@ -191,8 +192,8 @@ private static Exitable startGCLockerStresser(String name) {
191192
return task;
192193
}
193194

194-
private static Exitable startMemoryUser(String mxBeanName) {
195-
MemoryUser task = new MemoryUser(mxBeanName);
195+
private static Exitable startMemoryUser(String mxBeanName, int minFreeCriticalWaitMS) {
196+
MemoryUser task = new MemoryUser(mxBeanName, minFreeCriticalWaitMS);
196197

197198
Thread thread = new Thread(task);
198199
thread.setName("Memory User");
@@ -206,12 +207,13 @@ public static void main(String[] args) {
206207

207208
long durationMinutes = args.length > 0 ? Long.parseLong(args[0]) : 5;
208209
String mxBeanName = args.length > 1 ? args[1] : null;
210+
int minFreeCriticalWaitMS = args.length > 2 ? Integer.parseInt(args[2]) : 500;
209211

210212
long startMS = System.currentTimeMillis();
211213

212214
Exitable stresser1 = startGCLockerStresser("GCLockerStresser1");
213215
Exitable stresser2 = startGCLockerStresser("GCLockerStresser2");
214-
Exitable memoryUser = startMemoryUser(mxBeanName);
216+
Exitable memoryUser = startMemoryUser(mxBeanName, minFreeCriticalWaitMS);
215217

216218
long durationMS = durationMinutes * 60 * 1000;
217219
while ((System.currentTimeMillis() - startMS) < durationMS) {

‎test/hotspot/jtreg/gc/stress/gclocker/TestGCLockerWithShenandoah.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
*/
5252
public class TestGCLockerWithShenandoah {
5353
public static void main(String[] args) {
54-
String[] testArgs = {"2", "Shenandoah heap"};
54+
String[] testArgs = {"2", "Shenandoah", "0"};
5555
TestGCLocker.main(testArgs);
5656
}
5757
}

0 commit comments

Comments
 (0)
Please sign in to comment.