File tree 1 file changed +6
-4
lines changed
test/hotspot/jtreg/runtime/stringtable
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -81,9 +81,11 @@ private static int fail(String msg) throws Exception {
81
81
// All G1 pauses except Cleanup do weak reference clearing.
82
82
private static final String g1Suffix = "Pause(?! Cleanup)" ;
83
83
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 \\ (.*\\ ) .*->.*$" ;
87
89
88
90
// Suffix for Shenandoah.
89
91
private static final String shenSuffix = "Concurrent weak roots" ;
@@ -94,7 +96,7 @@ private static String getGcStartString() {
94
96
} else if (GC .G1 .isSelected ()) {
95
97
return gcStartPrefix + g1Suffix ;
96
98
} else if (GC .Z .isSelected ()) {
97
- return gcStartPrefix + zStartSuffix ;
99
+ return zStartPrefix + zStartSuffix ;
98
100
} else if (GC .Shenandoah .isSelected ()) {
99
101
return gcStartPrefix + shenSuffix ;
100
102
} else {
You can’t perform that action at this time.
0 commit comments