author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46779 | hotspot/test/runtime/CDSCompressedKPtrs/CDSCompressedKPtrs.java@d80ca591ae48 |
permissions | -rw-r--r-- |
19319 | 1 |
/* |
46779
d80ca591ae48
8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents:
40631
diff
changeset
|
2 |
* Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved. |
19319 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
*/ |
|
23 |
||
46779
d80ca591ae48
8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents:
40631
diff
changeset
|
24 |
/** |
19319 | 25 |
* @test |
46779
d80ca591ae48
8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents:
40631
diff
changeset
|
26 |
* @requires vm.cds |
19319 | 27 |
* @bug 8003424 |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19707
diff
changeset
|
28 |
* @summary Testing UseCompressedClassPointers with CDS |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
36851
diff
changeset
|
29 |
* @library /test/lib |
36851 | 30 |
* @modules java.base/jdk.internal.misc |
29678
dd2f3932c21e
8075586: Add @modules as needed to the open hotspot tests
ykantser
parents:
19979
diff
changeset
|
31 |
* java.management |
19319 | 32 |
* @run main CDSCompressedKPtrs |
33 |
*/ |
|
34 |
||
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
36851
diff
changeset
|
35 |
import jdk.test.lib.Platform; |
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
36851
diff
changeset
|
36 |
import jdk.test.lib.process.ProcessTools; |
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
36851
diff
changeset
|
37 |
import jdk.test.lib.process.OutputAnalyzer; |
19319 | 38 |
|
39 |
public class CDSCompressedKPtrs { |
|
40 |
public static void main(String[] args) throws Exception { |
|
41 |
ProcessBuilder pb; |
|
42 |
if (Platform.is64bit()) { |
|
43 |
pb = ProcessTools.createJavaProcessBuilder( |
|
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19707
diff
changeset
|
44 |
"-XX:+UseCompressedClassPointers", "-XX:+UseCompressedOops", |
30123
7a8b6bd85e24
8075438: [TESTBUG] Hotspot JTREG tests should use unique CDS archive names
ctornqvi
parents:
19979
diff
changeset
|
45 |
"-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./CDSCompressedKPtrs.jsa", "-Xshare:dump"); |
19319 | 46 |
OutputAnalyzer output = new OutputAnalyzer(pb.start()); |
47 |
try { |
|
48 |
output.shouldContain("Loading classes to share"); |
|
49 |
output.shouldHaveExitValue(0); |
|
50 |
||
51 |
pb = ProcessTools.createJavaProcessBuilder( |
|
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19707
diff
changeset
|
52 |
"-XX:+UseCompressedClassPointers", "-XX:+UseCompressedOops", |
30123
7a8b6bd85e24
8075438: [TESTBUG] Hotspot JTREG tests should use unique CDS archive names
ctornqvi
parents:
19979
diff
changeset
|
53 |
"-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./CDSCompressedKPtrs.jsa", "-Xshare:on", "-version"); |
19319 | 54 |
output = new OutputAnalyzer(pb.start()); |
55 |
output.shouldContain("sharing"); |
|
56 |
output.shouldHaveExitValue(0); |
|
57 |
||
58 |
} catch (RuntimeException e) { |
|
19707
fecaabc8e462
8023381: VM fails to initialize in runtime/CDSCompressedKPtrs/XShareAuto.java runtime/SharedArchiveFile/CdsSameObjectAlignment.java
hseigel
parents:
19319
diff
changeset
|
59 |
// Report 'passed' if CDS was turned off. |
fecaabc8e462
8023381: VM fails to initialize in runtime/CDSCompressedKPtrs/XShareAuto.java runtime/SharedArchiveFile/CdsSameObjectAlignment.java
hseigel
parents:
19319
diff
changeset
|
60 |
output.shouldContain("Unable to use shared archive"); |
19319 | 61 |
output.shouldHaveExitValue(1); |
62 |
} |
|
63 |
} |
|
64 |
} |
|
65 |
} |