author | ctornqvi |
Mon, 30 Mar 2015 08:28:07 -0700 | |
changeset 30123 | 7a8b6bd85e24 |
parent 23442 | be6bd2c1f2a8 |
child 30146 | a5809dde4617 |
permissions | -rw-r--r-- |
18071 | 1 |
/* |
30123
7a8b6bd85e24
8075438: [TESTBUG] Hotspot JTREG tests should use unique CDS archive names
ctornqvi
parents:
23442
diff
changeset
|
2 |
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved. |
18071 | 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 CdsDifferentObjectAlignment |
|
26 |
* @summary Testing CDS (class data sharing) using varying object alignment. |
|
27 |
* Using different object alignment for each dump/load pair. |
|
28 |
* This is a negative test; using object alignment for loading that |
|
29 |
* is different from object alignment for creating a CDS file |
|
30 |
* should fail when loading. |
|
31 |
* @library /testlibrary |
|
22892
1709e0e0b87c
8034898: [TESTBUG]: Zero failure project - tag all Runtime JTReg bugs that fail nightly
gtriantafill
parents:
18071
diff
changeset
|
32 |
* @bug 8025642 |
18071 | 33 |
*/ |
34 |
||
35 |
import com.oracle.java.testlibrary.*; |
|
36 |
||
37 |
public class CdsDifferentObjectAlignment { |
|
38 |
public static void main(String[] args) throws Exception { |
|
39 |
String nativeWordSize = System.getProperty("sun.arch.data.model"); |
|
40 |
if (!Platform.is64bit()) { |
|
41 |
System.out.println("ObjectAlignmentInBytes for CDS is only " + |
|
42 |
"supported on 64bit platforms; this plaform is " + |
|
43 |
nativeWordSize); |
|
44 |
System.out.println("Skipping the test"); |
|
45 |
} else { |
|
46 |
createAndLoadSharedArchive(16, 64); |
|
47 |
createAndLoadSharedArchive(64, 32); |
|
48 |
} |
|
49 |
} |
|
50 |
||
51 |
||
52 |
// Parameters are object alignment expressed in bytes |
|
53 |
private static void |
|
54 |
createAndLoadSharedArchive(int createAlignment, int loadAlignment) |
|
55 |
throws Exception { |
|
56 |
String createAlignmentArgument = "-XX:ObjectAlignmentInBytes=" + |
|
57 |
createAlignment; |
|
58 |
String loadAlignmentArgument = "-XX:ObjectAlignmentInBytes=" + |
|
59 |
loadAlignment; |
|
30123
7a8b6bd85e24
8075438: [TESTBUG] Hotspot JTREG tests should use unique CDS archive names
ctornqvi
parents:
23442
diff
changeset
|
60 |
String filename = "./CdsDifferentObjectAlignment" + createAlignment + ".jsa"; |
18071 | 61 |
|
62 |
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( |
|
63 |
"-XX:+UnlockDiagnosticVMOptions", |
|
30123
7a8b6bd85e24
8075438: [TESTBUG] Hotspot JTREG tests should use unique CDS archive names
ctornqvi
parents:
23442
diff
changeset
|
64 |
"-XX:SharedArchiveFile=" + filename, |
18071 | 65 |
"-Xshare:dump", |
66 |
createAlignmentArgument); |
|
67 |
||
68 |
OutputAnalyzer output = new OutputAnalyzer(pb.start()); |
|
69 |
output.shouldContain("Loading classes to share"); |
|
70 |
output.shouldHaveExitValue(0); |
|
71 |
||
72 |
pb = ProcessTools.createJavaProcessBuilder( |
|
73 |
"-XX:+UnlockDiagnosticVMOptions", |
|
30123
7a8b6bd85e24
8075438: [TESTBUG] Hotspot JTREG tests should use unique CDS archive names
ctornqvi
parents:
23442
diff
changeset
|
74 |
"-XX:SharedArchiveFile=" + filename, |
18071 | 75 |
"-Xshare:on", |
76 |
loadAlignmentArgument, |
|
77 |
"-version"); |
|
78 |
||
79 |
output = new OutputAnalyzer(pb.start()); |
|
80 |
String expectedErrorMsg = |
|
81 |
String.format( |
|
82 |
"The shared archive file's ObjectAlignmentInBytes of %d " + |
|
83 |
"does not equal the current ObjectAlignmentInBytes of %d", |
|
84 |
createAlignment, |
|
85 |
loadAlignment); |
|
86 |
||
23442
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
22892
diff
changeset
|
87 |
try { |
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
22892
diff
changeset
|
88 |
output.shouldContain(expectedErrorMsg); |
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
22892
diff
changeset
|
89 |
} catch (RuntimeException e) { |
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
22892
diff
changeset
|
90 |
output.shouldContain("Unable to use shared archive"); |
be6bd2c1f2a8
8026154: [TESTBUG] runtime/CDSCompressedKPtrs/XShareAuto.java failed due to exception
mseledtsov
parents:
22892
diff
changeset
|
91 |
} |
18071 | 92 |
output.shouldHaveExitValue(1); |
93 |
} |
|
94 |
} |