author | jiefu |
Wed, 06 Nov 2019 13:43:25 +0800 | |
changeset 58944 | bb2a436e616c |
parent 57567 | b000362a89a0 |
child 59129 | d8eddc0ba770 |
permissions | -rw-r--r-- |
48138 | 1 |
/* |
57567
b000362a89a0
8202339: [TESTBUG] Consolidate the tests in runtime/SharedArchiveFile and runtime/appcds
coleenp
parents:
51990
diff
changeset
|
2 |
* Copyright (c) 2017, 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 |
|
27 |
* @summary test the ability to archive array classes and load them from the archive |
|
48469
7312ae4465d6
8193672: [test] Enhance vm.cds property to check for all conditions required to run CDS tests
iklam
parents:
48383
diff
changeset
|
28 |
* @requires vm.cds |
57567
b000362a89a0
8202339: [TESTBUG] Consolidate the tests in runtime/SharedArchiveFile and runtime/appcds
coleenp
parents:
51990
diff
changeset
|
29 |
* @library /test/lib /test/hotspot/jtreg/runtime/cds/appcds |
48138 | 30 |
* @modules jdk.jartool/sun.tools.jar |
31 |
* @compile ArrayTestHelper.java |
|
32 |
* @build sun.hotspot.WhiteBox |
|
48791
6e079ff6c83c
8186635: ClassFileInstaller should be run as a driver
iignatyev
parents:
48469
diff
changeset
|
33 |
* @run driver ClassFileInstaller sun.hotspot.WhiteBox |
51990
6003e034cdd8
8209946: [TESTBUG] CDS tests should use "@run driver"
iklam
parents:
51507
diff
changeset
|
34 |
* @run driver ArrayTest |
48138 | 35 |
*/ |
36 |
||
37 |
import java.util.List; |
|
38 |
import java.util.ArrayList; |
|
39 |
import jdk.test.lib.process.OutputAnalyzer; |
|
40 |
||
41 |
public class ArrayTest { |
|
42 |
||
43 |
static String arrayClasses[] = { |
|
44 |
"ArrayTestHelper", |
|
45 |
"[Ljava/lang/Comparable;", |
|
48383
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
46 |
"[I", |
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
47 |
"[[[Ljava/lang/Object;", |
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
48 |
"[[B" |
48138 | 49 |
}; |
50 |
||
51 |
public static void main(String[] args) throws Exception { |
|
52 |
JarBuilder.build("arrayTestHelper", "ArrayTestHelper"); |
|
53 |
||
54 |
String appJar = TestCommon.getTestJar("arrayTestHelper.jar"); |
|
55 |
JarBuilder.build(true, "WhiteBox", "sun/hotspot/WhiteBox"); |
|
56 |
String whiteBoxJar = TestCommon.getTestJar("WhiteBox.jar"); |
|
57 |
String bootClassPath = "-Xbootclasspath/a:" + whiteBoxJar; |
|
58 |
||
59 |
// create an archive containing array classes |
|
51507
3e3764f8fe36
8207211: [TESTBUG] Remove excessive output from CDS/AppCDS tests
ccheung
parents:
48979
diff
changeset
|
60 |
OutputAnalyzer output = TestCommon.dump(appJar, TestCommon.list(arrayClasses), bootClassPath); |
48383
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
61 |
// we currently don't support array classes during CDS dump |
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
62 |
output.shouldContain("Preload Warning: Cannot find [Ljava/lang/Comparable;") |
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
63 |
.shouldContain("Preload Warning: Cannot find [I") |
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
64 |
.shouldContain("Preload Warning: Cannot find [[[Ljava/lang/Object;") |
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
65 |
.shouldContain("Preload Warning: Cannot find [[B"); |
48138 | 66 |
|
67 |
List<String> argsList = new ArrayList<String>(); |
|
68 |
argsList.add("-XX:+UnlockDiagnosticVMOptions"); |
|
69 |
argsList.add("-XX:+WhiteBoxAPI"); |
|
70 |
argsList.add("-cp"); |
|
71 |
argsList.add(appJar); |
|
72 |
argsList.add(bootClassPath); |
|
73 |
argsList.add("ArrayTestHelper"); |
|
74 |
// the following are input args to the ArrayTestHelper. |
|
48383
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
75 |
// skip checking array classes during run time |
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
76 |
for (int i = 0; i < 1; i++) { |
48138 | 77 |
argsList.add(arrayClasses[i]); |
78 |
} |
|
79 |
String[] opts = new String[argsList.size()]; |
|
80 |
opts = argsList.toArray(opts); |
|
48979
514c73a1955b
8179249: Improve process output analysis in CDS tests
iklam
parents:
48791
diff
changeset
|
81 |
TestCommon.run(opts).assertNormalExit(); |
48138 | 82 |
} |
83 |
} |