author | goetz |
Thu, 03 Aug 2017 10:24:34 +0200 | |
changeset 46779 | d80ca591ae48 |
parent 46522 | 86b13b03a053 |
permissions | -rw-r--r-- |
19319 | 1 |
/* |
46522
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
43455
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:
46522
diff
changeset
|
24 |
/** |
19319 | 25 |
* @test |
46779
d80ca591ae48
8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents:
46522
diff
changeset
|
26 |
* @requires vm.cds |
19319 | 27 |
* @bug 8005933 |
28 |
* @summary Test that -Xshare:auto uses CDS when explicitly specified with -server. |
|
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
38108
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:
25332
diff
changeset
|
31 |
* java.management |
19319 | 32 |
* @run main XShareAuto |
33 |
*/ |
|
34 |
||
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
38108
diff
changeset
|
35 |
import jdk.test.lib.Platform; |
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
38108
diff
changeset
|
36 |
import jdk.test.lib.process.ProcessTools; |
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
38108
diff
changeset
|
37 |
import jdk.test.lib.process.OutputAnalyzer; |
19319 | 38 |
|
39 |
public class XShareAuto { |
|
40 |
public static void main(String[] args) throws Exception { |
|
41 |
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( |
|
20058
fc8fd1c76fe2
8024517: runtime/CDSCompressedKPtrs/XShareAuto.java failed with RuntimeException
hseigel
parents:
19707
diff
changeset
|
42 |
"-server", "-XX:+UnlockDiagnosticVMOptions", |
30123
7a8b6bd85e24
8075438: [TESTBUG] Hotspot JTREG tests should use unique CDS archive names
ctornqvi
parents:
25332
diff
changeset
|
43 |
"-XX:SharedArchiveFile=./XShareAuto.jsa", "-Xshare:dump"); |
19319 | 44 |
OutputAnalyzer output = new OutputAnalyzer(pb.start()); |
45 |
output.shouldContain("Loading classes to share"); |
|
46 |
output.shouldHaveExitValue(0); |
|
47 |
||
48 |
pb = ProcessTools.createJavaProcessBuilder( |
|
49 |
"-server", "-XX:+UnlockDiagnosticVMOptions", |
|
30123
7a8b6bd85e24
8075438: [TESTBUG] Hotspot JTREG tests should use unique CDS archive names
ctornqvi
parents:
25332
diff
changeset
|
50 |
"-XX:SharedArchiveFile=./XShareAuto.jsa", "-version"); |
19319 | 51 |
output = new OutputAnalyzer(pb.start()); |
43455
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
40631
diff
changeset
|
52 |
String outputString = output.getOutput(); |
25332
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
53 |
// We asked for server but it could be aliased to something else |
43455
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
40631
diff
changeset
|
54 |
if (outputString.contains("Server VM") && !outputString.contains("emulated-client")) { |
25332
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
55 |
// In server case we don't expect to see sharing flag |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
56 |
output.shouldNotContain("sharing"); |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
57 |
output.shouldHaveExitValue(0); |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
58 |
} |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
59 |
else { |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
60 |
System.out.println("Skipping test - no Server VM available"); |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
61 |
return; |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
62 |
} |
19319 | 63 |
|
64 |
pb = ProcessTools.createJavaProcessBuilder( |
|
65 |
"-server", "-Xshare:auto", "-XX:+UnlockDiagnosticVMOptions", |
|
46522
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
43455
diff
changeset
|
66 |
"-XX:SharedArchiveFile=./XShareAuto.jsa", "-Xlog:cds", "-version"); |
19319 | 67 |
output = new OutputAnalyzer(pb.start()); |
68 |
try { |
|
69 |
output.shouldContain("sharing"); |
|
70 |
} catch (RuntimeException e) { |
|
23442
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
21769
diff
changeset
|
71 |
// if sharing failed due to ASLR or similar reasons, |
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
21769
diff
changeset
|
72 |
// check whether sharing was attempted at all (UseSharedSpaces) |
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
21769
diff
changeset
|
73 |
output.shouldContain("UseSharedSpaces:"); |
38108
95c7e9d6747c
8154976: UseSharedSpaces error message is incomplete
ccheung
parents:
36851
diff
changeset
|
74 |
output.shouldNotContain("Unable to map %s"); |
19319 | 75 |
} |
23442
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
21769
diff
changeset
|
76 |
output.shouldHaveExitValue(0); |
19319 | 77 |
} |
78 |
} |