annotate test/gc/arguments/TestCompressedClassFlags.java @ 12226:7944aba7ba41

8015107: NPG: Use consistent naming for metaspace concepts Reviewed-by: coleenp, mgerdin, hseigel
author ehelin
date Mon, 12 Aug 2013 17:37:02 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12226
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
1 /*
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
4 *
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
7 * published by the Free Software Foundation.
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
8 *
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
13 * accompanied this code).
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
14 *
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
18 *
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
21 * questions.
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
22 */
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
23
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
24 import com.oracle.java.testlibrary.*;
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
25
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
26 /*
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
27 * @test
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
28 * @bug 8015107
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
29 * @summary Tests that VM prints a warning when -XX:CompressedClassSpaceSize
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
30 * is used together with -XX:-UseCompressedClassPointers
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
31 * @library /testlibrary
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
32 */
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
33 public class TestCompressedClassFlags {
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
34 public static void main(String[] args) throws Exception {
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
35 if (Platform.is64bit()) {
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
36 OutputAnalyzer output = runJava("-XX:CompressedClassSpaceSize=1g",
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
37 "-XX:-UseCompressedClassPointers",
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
38 "-version");
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
39 output.shouldContain("warning");
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
40 output.shouldNotContain("error");
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
41 output.shouldHaveExitValue(0);
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
42 }
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
43 }
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
44
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
45 private static OutputAnalyzer runJava(String ... args) throws Exception {
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
46 ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(args);
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
47 return new OutputAnalyzer(pb.start());
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
48 }
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
diff changeset
49 }