Skip to content

Commit 847f65c

Browse files
committedNov 22, 2024
8344844: ciReplay tests fail with -XX:+UseCompactObjectHeaders because CDS is disabled since JDK-8341553
Reviewed-by: epeter, rcastanedalo
1 parent 8903854 commit 847f65c

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed
 

‎test/hotspot/jtreg/compiler/ciReplay/CiReplayBase.java

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -30,6 +30,9 @@
3030
import jdk.test.lib.process.OutputAnalyzer;
3131
import jdk.test.lib.process.ProcessTools;
3232
import jdk.test.lib.util.CoreUtils;
33+
import jdk.test.whitebox.WhiteBox;
34+
35+
import jtreg.SkippedException;
3336

3437
import java.io.BufferedReader;
3538
import java.io.File;
@@ -126,6 +129,11 @@ public CiReplayBase(String args[]) {
126129
}
127130

128131
public void runTest(boolean needCoreDump, String... args) {
132+
// The CiReplay tests don't work properly when CDS is disabled
133+
boolean cdsEnabled = WhiteBox.getWhiteBox().isSharingEnabled();
134+
if (!cdsEnabled) {
135+
throw new SkippedException("CDS is not available for this JDK.");
136+
}
129137
cleanup();
130138
if (generateReplay(needCoreDump, args)) {
131139
testAction();

‎test/hotspot/jtreg/compiler/ciReplay/InliningBase.java

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2021, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,6 +24,9 @@
2424
package compiler.ciReplay;
2525

2626
import jdk.test.lib.Asserts;
27+
import jdk.test.whitebox.WhiteBox;
28+
29+
import jtreg.SkippedException;
2730

2831
import java.io.IOException;
2932
import java.nio.file.Files;
@@ -51,6 +54,11 @@ protected InliningBase(Class<?> testClass) {
5154
}
5255

5356
protected void runTest() {
57+
// The CiReplay tests don't work properly when CDS is disabled
58+
boolean cdsEnabled = WhiteBox.getWhiteBox().isSharingEnabled();
59+
if (!cdsEnabled) {
60+
throw new SkippedException("CDS is not available for this JDK.");
61+
}
5462
runTest(commandLineNormal.toArray(new String[0]));
5563
}
5664

‎test/hotspot/jtreg/compiler/ciReplay/TestInliningProtectionDomain.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2021, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -28,7 +28,10 @@
2828
* @summary Testing that ciReplay inlining does not fail with unresolved signature classes.
2929
* @requires vm.flightRecorder != true & vm.compMode != "Xint" & vm.compMode != "Xcomp" & vm.debug == true & vm.compiler2.enabled
3030
* @modules java.base/jdk.internal.misc
31-
* @run driver compiler.ciReplay.TestInliningProtectionDomain
31+
* @build jdk.test.whitebox.WhiteBox
32+
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
33+
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
34+
* compiler.ciReplay.TestInliningProtectionDomain
3235
*/
3336

3437
package compiler.ciReplay;

0 commit comments

Comments
 (0)
Please sign in to comment.