Skip to content

Commit 1b93b81

Browse files
albertnetymkThomas Schatzl
andcommitted
8267133: jdk/jfr/event/gc/collection/TestG1ParallelPhases.java fails with Not expected phases: RestorePreservedMarks, RemoveSelfForwardingPtr: expected true, was false
8267218: jdk/jfr/event/gc/collection/TestG1ParallelPhases.java fails with Not found phases\: StringDedupQueueFixup, StringDedupTableFixup Co-authored-by: Thomas Schatzl <tschatzl@openjdk.org> Reviewed-by: tschatzl, iwalulya
1 parent 88b1142 commit 1b93b81

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

test/jdk/ProblemList.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,6 @@ jdk/jfr/event/compiler/TestCodeSweeper.java 8225209 gener
833833
jdk/jfr/event/os/TestThreadContextSwitches.java 8247776 windows-all
834834
jdk/jfr/startupargs/TestStartName.java 8214685 windows-x64
835835
jdk/jfr/startupargs/TestStartDuration.java 8214685 windows-x64
836-
jdk/jfr/event/gc/collection/TestG1ParallelPhases.java 8267133 generic-all
837836

838837
############################################################################
839838

test/jdk/jdk/jfr/event/gc/collection/TestG1ParallelPhases.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,6 @@ public static void main(String[] args) throws IOException {
104104
"CodeRoots",
105105
"ObjCopy",
106106
"Termination",
107-
"StringDedupQueueFixup",
108-
"StringDedupTableFixup",
109107
"RedirtyCards",
110108
"RecalculateUsed",
111109
"ResetHotCardCache",
@@ -123,6 +121,10 @@ public static void main(String[] args) throws IOException {
123121
// Some GC phases may or may not occur depending on environment. Filter them out
124122
// since we can not reliably guarantee that they occur (or not).
125123
Set<String> optPhases = of(
124+
// The following two phases only occur on evacuation failure.
125+
"RemoveSelfForwardingPtr",
126+
"RestorePreservedMarks",
127+
126128
"OptScanHR",
127129
"OptMergeRS",
128130
"OptCodeRoots",

0 commit comments

Comments
 (0)