author | ykantser |
Thu, 26 Mar 2015 16:36:56 +0100 | |
changeset 29678 | dd2f3932c21e |
parent 25332 | de966f7475d6 |
child 30146 | a5809dde4617 |
permissions | -rw-r--r-- |
19319 | 1 |
/* |
29678
dd2f3932c21e
8075586: Add @modules as needed to the open hotspot tests
ykantser
parents:
25332
diff
changeset
|
2 |
* Copyright (c) 2013, 2015, 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 |
||
24 |
/* |
|
25 |
* @test |
|
26 |
* @bug 8005933 |
|
27 |
* @summary Test that -Xshare:auto uses CDS when explicitly specified with -server. |
|
28 |
* @library /testlibrary |
|
29678
dd2f3932c21e
8075586: Add @modules as needed to the open hotspot tests
ykantser
parents:
25332
diff
changeset
|
29 |
* @modules java.base/sun.misc |
dd2f3932c21e
8075586: Add @modules as needed to the open hotspot tests
ykantser
parents:
25332
diff
changeset
|
30 |
* java.management |
19319 | 31 |
* @run main XShareAuto |
32 |
*/ |
|
33 |
||
34 |
import com.oracle.java.testlibrary.*; |
|
35 |
||
36 |
public class XShareAuto { |
|
37 |
public static void main(String[] args) throws Exception { |
|
38 |
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( |
|
20058
fc8fd1c76fe2
8024517: runtime/CDSCompressedKPtrs/XShareAuto.java failed with RuntimeException
hseigel
parents:
19707
diff
changeset
|
39 |
"-server", "-XX:+UnlockDiagnosticVMOptions", |
fc8fd1c76fe2
8024517: runtime/CDSCompressedKPtrs/XShareAuto.java failed with RuntimeException
hseigel
parents:
19707
diff
changeset
|
40 |
"-XX:SharedArchiveFile=./sample.jsa", "-Xshare:dump"); |
19319 | 41 |
OutputAnalyzer output = new OutputAnalyzer(pb.start()); |
42 |
output.shouldContain("Loading classes to share"); |
|
43 |
output.shouldHaveExitValue(0); |
|
44 |
||
45 |
pb = ProcessTools.createJavaProcessBuilder( |
|
46 |
"-server", "-XX:+UnlockDiagnosticVMOptions", |
|
47 |
"-XX:SharedArchiveFile=./sample.jsa", "-version"); |
|
48 |
output = new OutputAnalyzer(pb.start()); |
|
25332
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
49 |
// We asked for server but it could be aliased to something else |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
50 |
if (output.getOutput().contains("Server VM")) { |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
51 |
// 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
|
52 |
output.shouldNotContain("sharing"); |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
53 |
output.shouldHaveExitValue(0); |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
54 |
} |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
55 |
else { |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
56 |
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
|
57 |
return; |
de966f7475d6
8044818: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java fails with RuntimeException 'sharing' found in stderr
dholmes
parents:
23442
diff
changeset
|
58 |
} |
19319 | 59 |
|
60 |
pb = ProcessTools.createJavaProcessBuilder( |
|
61 |
"-server", "-Xshare:auto", "-XX:+UnlockDiagnosticVMOptions", |
|
23442
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
21769
diff
changeset
|
62 |
"-XX:SharedArchiveFile=./sample.jsa", "-XX:+PrintSharedSpaces", "-version"); |
19319 | 63 |
output = new OutputAnalyzer(pb.start()); |
64 |
try { |
|
65 |
output.shouldContain("sharing"); |
|
66 |
} catch (RuntimeException e) { |
|
23442
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
21769
diff
changeset
|
67 |
// 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
|
68 |
// check whether sharing was attempted at all (UseSharedSpaces) |
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
21769
diff
changeset
|
69 |
output.shouldContain("UseSharedSpaces:"); |
19319 | 70 |
} |
23442
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
21769
diff
changeset
|
71 |
output.shouldHaveExitValue(0); |
19319 | 72 |
} |
73 |
} |