From 6f85a9c9a8ea3f76575acb4964cd80219822f073 Mon Sep 17 00:00:00 2001 From: Matthias Baesken Date: Wed, 28 Dec 2022 14:22:43 +0000 Subject: [PATCH] 8299387: CompressedClassPointers.java still fails on ppc with 'Narrow klass shift: 0' missing Reviewed-by: mdoerr --- .../jtreg/runtime/CompressedOops/CompressedClassPointers.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/hotspot/jtreg/runtime/CompressedOops/CompressedClassPointers.java b/test/hotspot/jtreg/runtime/CompressedOops/CompressedClassPointers.java index 8e2033e7329..d336d8c227a 100644 --- a/test/hotspot/jtreg/runtime/CompressedOops/CompressedClassPointers.java +++ b/test/hotspot/jtreg/runtime/CompressedOops/CompressedClassPointers.java @@ -126,7 +126,7 @@ public class CompressedClassPointers { if (testNarrowKlassBase()) { if (!(Platform.isAArch64() && Platform.isOSX())) { // see JDK-8262895 output.shouldContain("Narrow klass base: 0x0000000000000000"); - if (!Platform.isAArch64() && !Platform.isOSX()) { + if (!Platform.isAArch64() && !Platform.isPPC() && !Platform.isOSX()) { output.shouldContain("Narrow klass shift: 0"); } }