author | jiefu |
Wed, 06 Nov 2019 13:43:25 +0800 | |
changeset 58944 | bb2a436e616c |
parent 57705 | 7cf02b2c1455 |
child 58679 | 9c3209ff7550 |
permissions | -rw-r--r-- |
48138 | 1 |
/* |
54927 | 2 |
* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved. |
48138 | 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 |
/* |
|
26 |
* @test CommandLineFlagComboNegative |
|
27 |
* @summary Test command line flag combinations that differ between |
|
28 |
* the dump and execute steps, in such way that they cause errors |
|
29 |
* E.g. use compressed oops for creating and archive, but then |
|
30 |
* execute w/o compressed oops |
|
48469
7312ae4465d6
8193672: [test] Enhance vm.cds property to check for all conditions required to run CDS tests
iklam
parents:
48138
diff
changeset
|
31 |
* @requires vm.cds |
48138 | 32 |
* @library /test/lib |
57705
7cf02b2c1455
8229267: [TESTBUG] Remove unnecessary @modules dependencies in CDS tests
iklam
parents:
57567
diff
changeset
|
33 |
* @modules jdk.jartool/sun.tools.jar |
48138 | 34 |
* @compile test-classes/Hello.java |
51990
6003e034cdd8
8209946: [TESTBUG] CDS tests should use "@run driver"
iklam
parents:
51104
diff
changeset
|
35 |
* @run driver CommandLineFlagComboNegative |
48138 | 36 |
*/ |
37 |
||
38 |
import java.util.ArrayList; |
|
39 |
import jdk.test.lib.Platform; |
|
40 |
import jdk.test.lib.process.OutputAnalyzer; |
|
41 |
||
42 |
public class CommandLineFlagComboNegative { |
|
43 |
||
44 |
private class TestVector { |
|
45 |
public String testOptionForDumpStep; |
|
46 |
public String testOptionForExecuteStep; |
|
47 |
public String expectedErrorMsg; |
|
48 |
public int expectedErrorCode; |
|
49 |
||
50 |
public TestVector(String testOptionForDumpStep, String testOptionForExecuteStep, |
|
51 |
String expectedErrorMsg, int expectedErrorCode) { |
|
52 |
this.testOptionForDumpStep=testOptionForDumpStep; |
|
53 |
this.testOptionForExecuteStep=testOptionForExecuteStep; |
|
54 |
this.expectedErrorMsg=expectedErrorMsg; |
|
55 |
this.expectedErrorCode=expectedErrorCode; |
|
56 |
} |
|
57 |
} |
|
58 |
||
59 |
private ArrayList<TestVector> testTable = new ArrayList<TestVector>(); |
|
60 |
||
61 |
private void initTestTable() { |
|
62 |
// These options are not applicable on 32-bit platforms |
|
63 |
if (Platform.is64bit()) { |
|
64 |
testTable.add( new TestVector("-XX:ObjectAlignmentInBytes=8", "-XX:ObjectAlignmentInBytes=16", |
|
65 |
"An error has occurred while processing the shared archive file", 1) ); |
|
54927 | 66 |
if (!TestCommon.isDynamicArchive()) { |
67 |
testTable.add( new TestVector("-XX:ObjectAlignmentInBytes=64", "-XX:ObjectAlignmentInBytes=32", |
|
68 |
"An error has occurred while processing the shared archive file", 1) ); |
|
69 |
} |
|
48138 | 70 |
testTable.add( new TestVector("-XX:+UseCompressedOops", "-XX:-UseCompressedOops", |
71 |
"Class data sharing is inconsistent with other specified options", 1) ); |
|
72 |
testTable.add( new TestVector("-XX:+UseCompressedClassPointers", "-XX:-UseCompressedClassPointers", |
|
73 |
"Class data sharing is inconsistent with other specified options", 1) ); |
|
74 |
} |
|
75 |
} |
|
76 |
||
77 |
private void runTests() throws Exception |
|
78 |
{ |
|
79 |
for (TestVector testEntry : testTable) { |
|
80 |
System.out.println("CommandLineFlagComboNegative: dump = " + testEntry.testOptionForDumpStep); |
|
81 |
System.out.println("CommandLineFlagComboNegative: execute = " + testEntry.testOptionForExecuteStep); |
|
82 |
||
83 |
String appJar = JarBuilder.getOrCreateHelloJar(); |
|
84 |
OutputAnalyzer dumpOutput = TestCommon.dump( |
|
85 |
appJar, new String[] {"Hello"}, testEntry.testOptionForDumpStep); |
|
86 |
||
87 |
TestCommon.checkDump(dumpOutput, "Loading classes to share"); |
|
88 |
||
89 |
OutputAnalyzer execOutput = TestCommon.exec(appJar, testEntry.testOptionForExecuteStep, "Hello"); |
|
90 |
execOutput.shouldContain(testEntry.expectedErrorMsg); |
|
91 |
execOutput.shouldHaveExitValue(testEntry.expectedErrorCode); |
|
92 |
} |
|
93 |
} |
|
94 |
||
95 |
public static void main(String[] args) throws Exception { |
|
96 |
CommandLineFlagComboNegative thisClass = new CommandLineFlagComboNegative(); |
|
97 |
thisClass.initTestTable(); |
|
98 |
thisClass.runTests(); |
|
99 |
} |
|
100 |
} |