Skip to content

Commit f9e068d

Browse files
author
William Kemper
committedSep 22, 2021
Fix failing jtreg tests
Reviewed-by: kdnilsen
1 parent 52973cc commit f9e068d

File tree

4 files changed

+7
-21
lines changed

4 files changed

+7
-21
lines changed
 

‎src/hotspot/share/gc/shenandoah/shenandoahControlThread.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
#include "gc/shenandoah/shenandoahMark.inline.hpp"
3737
#include "gc/shenandoah/shenandoahMonitoringSupport.hpp"
3838
#include "gc/shenandoah/shenandoahOopClosures.inline.hpp"
39+
#include "gc/shenandoah/shenandoahOldGC.hpp"
3940
#include "gc/shenandoah/shenandoahRootProcessor.inline.hpp"
4041
#include "gc/shenandoah/shenandoahUtils.hpp"
4142
#include "gc/shenandoah/shenandoahVMOperations.hpp"
@@ -47,7 +48,6 @@
4748
#include "memory/metaspaceStats.hpp"
4849
#include "memory/universe.hpp"
4950
#include "runtime/atomic.hpp"
50-
#include "shenandoahOldGC.hpp"
5151

5252
ShenandoahControlThread::ShenandoahControlThread() :
5353
ConcurrentGCThread(),
@@ -230,6 +230,8 @@ void ShenandoahControlThread::run_service() {
230230
assert (!gc_requested || cause != GCCause::_last_gc_cause, "GC cause should be set");
231231

232232
if (gc_requested) {
233+
// GC is starting, bump the internal ID
234+
update_gc_id();
233235

234236
heap->reset_bytes_allocated_since_gc_start();
235237

@@ -273,9 +275,6 @@ void ShenandoahControlThread::run_service() {
273275
}
274276
}
275277

276-
// GC is finished, bump the internal ID before notifying waiters.
277-
update_gc_id();
278-
279278
// If this was the requested GC cycle, notify waiters about it
280279
if (explicit_gc_requested || implicit_gc_requested) {
281280
notify_gc_waiters();

‎test/hotspot/jtreg/gc/shenandoah/generational/TestCLIModeGenerational.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @summary Test argument processing for -XX:+ShenandoahGCMode=generational.
3232
* @library /testlibrary /test/lib /
3333
* @build sun.hotspot.WhiteBox
34-
* @run driver ClassFileInstaller sun.hotspot.WhiteBox
34+
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
3535
* @run main/othervm -Xbootclasspath/a:.
3636
* -XX:+IgnoreUnrecognizedVMOptions
3737
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI

‎test/hotspot/jtreg/gc/shenandoah/generational/TestConcurrentEvac.java

+2-10
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,7 @@
2828
import java.util.Random;
2929
import java.util.HashMap;
3030

31-
/* WARNING!
32-
* As of the date on which this test was added into the jtreg suite, heuristic
33-
* of old-gen GC passes is very simplistic. A further shortcoming of the
34-
* Generational Shenandoah as of introduction of this test is that it does
35-
* not currently support full GC. If garbage collection falls behind mutator
36-
* allocations, a full GC will be triggered and Generational Shenandoah will
37-
* abort itself with an assertion error. Both of these limitations will be
38-
* addressed in future releases of Generational Shenandoah.
39-
*
31+
/*
4032
* To avoid the risk of false regressions identified by this test, the heap
4133
* size is set artificially high. Though this test is known to run reliably
4234
* in 66 MB heap, the heap size for this test run is currently set to 256 MB.
@@ -48,7 +40,7 @@
4840
* @summary Confirm that card marking and remembered set scanning do not crash.
4941
* @library /testlibrary /test/lib /
5042
* @build sun.hotspot.WhiteBox
51-
* @run driver ClassFileInstaller sun.hotspot.WhiteBox
43+
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
5244
* @run main/othervm -Xbootclasspath/a:.
5345
* -Xms256m -Xmx256m
5446
* -XX:+IgnoreUnrecognizedVMOptions

‎test/hotspot/jtreg/gc/shenandoah/generational/TestSimpleGenerational.java

+1-6
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,13 @@
3333
* @summary Confirm that card marking and remembered set scanning do not crash.
3434
* @library /testlibrary /test/lib /
3535
* @build sun.hotspot.WhiteBox
36-
* @run driver ClassFileInstaller sun.hotspot.WhiteBox
36+
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
3737
* @run main/othervm -Xbootclasspath/a:.
3838
* -XX:+IgnoreUnrecognizedVMOptions
3939
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
4040
* -XX:+UseShenandoahGC -XX:ShenandoahGCMode=generational
4141
* gc.shenandoah.generational.TestSimpleGenerational
4242
*/
43-
44-
/* This used to be part of the run command, but caused problems.
45-
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
46-
*/
47-
4843
public class TestSimpleGenerational {
4944
private static WhiteBox wb = WhiteBox.getWhiteBox();
5045
static private final int SeedForRandom = 46;

0 commit comments

Comments
 (0)
Please sign in to comment.