Skip to content

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed
 

‎test/hotspot/jtreg/runtime/stringtable/StringTableCleaningTest.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,11 @@ private static int fail(String msg) throws Exception {
8181
// All G1 pauses except Cleanup do weak reference clearing.
8282
private static final String g1Suffix = "Pause(?! Cleanup)";
8383

84-
// Suffix for ZGC. Only major collections clean the string table.
85-
private static final String zStartSuffix = "Major Garbage Collection \\(.*\\)$";
86-
private static final String zEndSuffix = "Major Garbage Collection \\(.*\\) .*->.*$";
84+
// For ZGC only major collections clean the string table. ZGC prints the
85+
// start message without using the start tag, hence the special prefix.
86+
private static final String zStartPrefix = gcPrefix + gcMiddle;
87+
private static final String zStartSuffix = "Major Collection \\(.*\\)$";
88+
private static final String zEndSuffix = "Major Collection \\(.*\\) .*->.*$";
8789

8890
// Suffix for Shenandoah.
8991
private static final String shenSuffix = "Concurrent weak roots";
@@ -94,7 +96,7 @@ private static String getGcStartString() {
9496
} else if (GC.G1.isSelected()) {
9597
return gcStartPrefix + g1Suffix;
9698
} else if (GC.Z.isSelected()) {
97-
return gcStartPrefix + zStartSuffix;
99+
return zStartPrefix + zStartSuffix;
98100
} else if (GC.Shenandoah.isSelected()) {
99101
return gcStartPrefix + shenSuffix;
100102
} else {

0 commit comments

Comments
 (0)
Please sign in to comment.