8299387: CompressedClassPointers.java still fails on ppc with 'Narrow klass shift: 0' missing
Reviewed-by: mdoerr
This commit is contained in:
parent
d490f15e3b
commit
6f85a9c9a8
@ -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");
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user