author | goetz |
Thu, 03 Aug 2017 10:24:34 +0200 | |
changeset 46779 | d80ca591ae48 |
parent 46417 | 1593c061e6af |
permissions | -rw-r--r-- |
17375
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
1 |
/* |
46389 | 2 |
* Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved. |
17375
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
4 |
* |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
8 |
* |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
13 |
* accompanied this code). |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
14 |
* |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
18 |
* |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
21 |
* questions. |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
22 |
*/ |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
23 |
|
46779
d80ca591ae48
8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents:
46417
diff
changeset
|
24 |
/** |
17375
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
25 |
* @test |
46779
d80ca591ae48
8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents:
46417
diff
changeset
|
26 |
* @requires vm.cds |
17375
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
27 |
* @bug 8014138 |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
28 |
* @summary Testing new -XX:SharedArchiveFile=<file-name> option |
46417
1593c061e6af
8179243: [TESTBUG] CDS tests should be excluded from running with -UseCompressedOops
mseledtsov
parents:
46389
diff
changeset
|
29 |
* @requires (vm.opt.UseCompressedOops == null) | (vm.opt.UseCompressedOops == true) |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
36851
diff
changeset
|
30 |
* @library /test/lib |
36851 | 31 |
* @modules java.base/jdk.internal.misc |
29678
dd2f3932c21e
8075586: Add @modules as needed to the open hotspot tests
ykantser
parents:
17375
diff
changeset
|
32 |
* java.management |
17375
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
33 |
*/ |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
34 |
|
46389 | 35 |
import jdk.test.lib.cds.CDSTestUtils; |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
36851
diff
changeset
|
36 |
import jdk.test.lib.process.ProcessTools; |
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
36851
diff
changeset
|
37 |
import jdk.test.lib.process.OutputAnalyzer; |
17375
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
38 |
|
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
39 |
|
46389 | 40 |
// NOTE: This test serves as a sanity test and also as an example for simple |
41 |
// use of SharedArchiveFile argument. For this reason it DOES NOT use the utility |
|
42 |
// methods to form command line to create/use shared archive. |
|
43 |
public class SharedArchiveFile { |
|
44 |
public static void main(String[] args) throws Exception { |
|
46417
1593c061e6af
8179243: [TESTBUG] CDS tests should be excluded from running with -UseCompressedOops
mseledtsov
parents:
46389
diff
changeset
|
45 |
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(true, |
46389 | 46 |
"-XX:+UnlockDiagnosticVMOptions", |
47 |
"-XX:SharedArchiveFile=./SharedArchiveFile.jsa", |
|
48 |
"-Xshare:dump"); |
|
49 |
OutputAnalyzer out = CDSTestUtils.executeAndLog(pb, "SharedArchiveFile"); |
|
50 |
CDSTestUtils.checkDump(out); |
|
17375
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
51 |
|
46417
1593c061e6af
8179243: [TESTBUG] CDS tests should be excluded from running with -UseCompressedOops
mseledtsov
parents:
46389
diff
changeset
|
52 |
pb = ProcessTools.createJavaProcessBuilder(true, |
46389 | 53 |
"-XX:+UnlockDiagnosticVMOptions", |
54 |
"-XX:SharedArchiveFile=./SharedArchiveFile.jsa", |
|
55 |
"-Xshare:on", "-version"); |
|
56 |
out = CDSTestUtils.executeAndLog(pb, "SharedArchiveFile"); |
|
57 |
CDSTestUtils.checkExec(out); |
|
17375
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
58 |
} |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff
changeset
|
59 |
} |