test/runtime/CDSCompressedKPtrs/CDSCompressedKPtrs.java

Mon, 12 Aug 2013 17:37:02 +0200

author
ehelin
date
Mon, 12 Aug 2013 17:37:02 +0200
changeset 5694
7944aba7ba41
parent 5625
35b99e7e0af2
child 6876
710a3c8b516e
permissions
-rw-r--r--

8015107: NPG: Use consistent naming for metaspace concepts
Reviewed-by: coleenp, mgerdin, hseigel

hseigel@5528 1 /*
hseigel@5528 2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
hseigel@5528 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
hseigel@5528 4 *
hseigel@5528 5 * This code is free software; you can redistribute it and/or modify it
hseigel@5528 6 * under the terms of the GNU General Public License version 2 only, as
hseigel@5528 7 * published by the Free Software Foundation.
hseigel@5528 8 *
hseigel@5528 9 * This code is distributed in the hope that it will be useful, but WITHOUT
hseigel@5528 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
hseigel@5528 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
hseigel@5528 12 * version 2 for more details (a copy is included in the LICENSE file that
hseigel@5528 13 * accompanied this code).
hseigel@5528 14 *
hseigel@5528 15 * You should have received a copy of the GNU General Public License version
hseigel@5528 16 * 2 along with this work; if not, write to the Free Software Foundation,
hseigel@5528 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
hseigel@5528 18 *
hseigel@5528 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
hseigel@5528 20 * or visit www.oracle.com if you need additional information or have any
hseigel@5528 21 * questions.
hseigel@5528 22 */
hseigel@5528 23
hseigel@5528 24 /*
hseigel@5528 25 * @test
hseigel@5528 26 * @bug 8003424
ehelin@5694 27 * @summary Testing UseCompressedClassPointers with CDS
hseigel@5528 28 * @library /testlibrary
hseigel@5528 29 * @run main CDSCompressedKPtrs
hseigel@5528 30 */
hseigel@5528 31
hseigel@5528 32 import com.oracle.java.testlibrary.*;
hseigel@5528 33
hseigel@5528 34 public class CDSCompressedKPtrs {
hseigel@5528 35 public static void main(String[] args) throws Exception {
hseigel@5528 36 ProcessBuilder pb;
hseigel@5528 37 if (Platform.is64bit()) {
hseigel@5528 38 pb = ProcessTools.createJavaProcessBuilder(
ehelin@5694 39 "-XX:+UseCompressedClassPointers", "-XX:+UseCompressedOops",
hseigel@5528 40 "-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./sample.jsa", "-Xshare:dump");
hseigel@5528 41 OutputAnalyzer output = new OutputAnalyzer(pb.start());
hseigel@5528 42 try {
hseigel@5528 43 output.shouldContain("Loading classes to share");
hseigel@5528 44 output.shouldHaveExitValue(0);
hseigel@5528 45
hseigel@5528 46 pb = ProcessTools.createJavaProcessBuilder(
ehelin@5694 47 "-XX:+UseCompressedClassPointers", "-XX:+UseCompressedOops",
hseigel@5528 48 "-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./sample.jsa", "-Xshare:on", "-version");
hseigel@5528 49 output = new OutputAnalyzer(pb.start());
hseigel@5528 50 output.shouldContain("sharing");
hseigel@5528 51 output.shouldHaveExitValue(0);
hseigel@5528 52
hseigel@5528 53 } catch (RuntimeException e) {
hseigel@5625 54 // Report 'passed' if CDS was turned off.
hseigel@5625 55 output.shouldContain("Unable to use shared archive");
hseigel@5528 56 output.shouldHaveExitValue(1);
hseigel@5528 57 }
hseigel@5528 58 }
hseigel@5528 59 }
hseigel@5528 60 }

mercurial