File tree 3 files changed +23
-4
lines changed
test/hotspot/jtreg/compiler/ciReplay
3 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
30
30
import jdk .test .lib .process .OutputAnalyzer ;
31
31
import jdk .test .lib .process .ProcessTools ;
32
32
import jdk .test .lib .util .CoreUtils ;
33
+ import jdk .test .whitebox .WhiteBox ;
34
+
35
+ import jtreg .SkippedException ;
33
36
34
37
import java .io .BufferedReader ;
35
38
import java .io .File ;
@@ -126,6 +129,11 @@ public CiReplayBase(String args[]) {
126
129
}
127
130
128
131
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
+ }
129
137
cleanup ();
130
138
if (generateReplay (needCoreDump , args )) {
131
139
testAction ();
Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
24
24
package compiler .ciReplay ;
25
25
26
26
import jdk .test .lib .Asserts ;
27
+ import jdk .test .whitebox .WhiteBox ;
28
+
29
+ import jtreg .SkippedException ;
27
30
28
31
import java .io .IOException ;
29
32
import java .nio .file .Files ;
@@ -51,6 +54,11 @@ protected InliningBase(Class<?> testClass) {
51
54
}
52
55
53
56
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
+ }
54
62
runTest (commandLineNormal .toArray (new String [0 ]));
55
63
}
56
64
Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
28
28
* @summary Testing that ciReplay inlining does not fail with unresolved signature classes.
29
29
* @requires vm.flightRecorder != true & vm.compMode != "Xint" & vm.compMode != "Xcomp" & vm.debug == true & vm.compiler2.enabled
30
30
* @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
32
35
*/
33
36
34
37
package compiler .ciReplay ;
You can’t perform that action at this time.
0 commit comments