author | phh |
Sat, 30 Nov 2019 14:33:05 -0800 | |
changeset 59330 | 5b96c12f909d |
parent 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 |
* @build sun.hotspot.WhiteBox |
|
48791
6e079ff6c83c
8186635: ClassFileInstaller should be run as a driver
iignatyev
parents:
48469
diff
changeset
|
32 |
* @run driver ClassFileInstaller sun.hotspot.WhiteBox |
51990
6003e034cdd8
8209946: [TESTBUG] CDS tests should use "@run driver"
iklam
parents:
51507
diff
changeset
|
33 |
* @run driver ArrayTest |
48138 | 34 |
*/ |
35 |
||
36 |
import java.util.List; |
|
37 |
import java.util.ArrayList; |
|
38 |
import jdk.test.lib.process.OutputAnalyzer; |
|
39 |
||
40 |
public class ArrayTest { |
|
41 |
||
42 |
static String arrayClasses[] = { |
|
59129
d8eddc0ba770
8234304: runtime/cds/appcds/javaldr tests should use driver mode
iignatyev
parents:
57567
diff
changeset
|
43 |
ArrayTestHelper.class.getName(), |
48138 | 44 |
"[Ljava/lang/Comparable;", |
48383
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
45 |
"[I", |
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
46 |
"[[[Ljava/lang/Object;", |
d6388b652504
8192989: runtime/appcds/javaldr/ArrayTest.java crashes with assert(k->is_instance_klass())
ccheung
parents:
48138
diff
changeset
|
47 |
"[[B" |
48138 | 48 |
}; |
49 |
||
50 |
public static void main(String[] args) throws Exception { |
|
51 |
JarBuilder.build("arrayTestHelper", "ArrayTestHelper"); |
|
52 |
||
53 |
String appJar = TestCommon.getTestJar("arrayTestHelper.jar"); |
|
54 |
JarBuilder.build(true, "WhiteBox", "sun/hotspot/WhiteBox"); |
|
55 |
String whiteBoxJar = TestCommon.getTestJar("WhiteBox.jar"); |
|
56 |
String bootClassPath = "-Xbootclasspath/a:" + whiteBoxJar; |
|
57 |
||
58 |
// create an archive containing array classes |
|
51507
3e3764f8fe36
8207211: [TESTBUG] Remove excessive output from CDS/AppCDS tests
ccheung
parents:
48979
diff
changeset
|
59 |
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
|
60 |
// 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
|
61 |
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
|
62 |
.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
|
63 |
.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
|
64 |
.shouldContain("Preload Warning: Cannot find [[B"); |
48138 | 65 |
|
66 |
List<String> argsList = new ArrayList<String>(); |
|
67 |
argsList.add("-XX:+UnlockDiagnosticVMOptions"); |
|
68 |
argsList.add("-XX:+WhiteBoxAPI"); |
|
69 |
argsList.add("-cp"); |
|
70 |
argsList.add(appJar); |
|
71 |
argsList.add(bootClassPath); |
|
59129
d8eddc0ba770
8234304: runtime/cds/appcds/javaldr tests should use driver mode
iignatyev
parents:
57567
diff
changeset
|
72 |
argsList.add(ArrayTestHelper.class.getName()); |
48138 | 73 |
// 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
|
74 |
// 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
|
75 |
for (int i = 0; i < 1; i++) { |
48138 | 76 |
argsList.add(arrayClasses[i]); |
77 |
} |
|
78 |
String[] opts = new String[argsList.size()]; |
|
79 |
opts = argsList.toArray(opts); |
|
48979
514c73a1955b
8179249: Improve process output analysis in CDS tests
iklam
parents:
48791
diff
changeset
|
80 |
TestCommon.run(opts).assertNormalExit(); |
48138 | 81 |
} |
82 |
} |