Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/test/runtime/SharedArchiveFile/PrintSharedArchiveAndExit.java
32284 views
/*1* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223/*24* @test25* @bug 806667026* @summary Testing -XX:+PrintSharedArchiveAndExit option27* @library /testlibrary28*/2930import com.oracle.java.testlibrary.*;3132public class PrintSharedArchiveAndExit {33public static void main(String[] args) throws Exception {34ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(35"-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./sample.jsa", "-Xshare:dump");36OutputAnalyzer output = new OutputAnalyzer(pb.start());37try {38output.shouldContain("Loading classes to share");39output.shouldHaveExitValue(0);4041// (1) With a valid archive42pb = ProcessTools.createJavaProcessBuilder(43"-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./sample.jsa",44"-XX:+PrintSharedArchiveAndExit", "-version");45output = new OutputAnalyzer(pb.start());46output.shouldContain("archive is valid");47output.shouldNotContain("java version"); // Should not print JVM version48output.shouldHaveExitValue(0); // Should report success in error code.4950pb = ProcessTools.createJavaProcessBuilder(51"-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./sample.jsa",52"-XX:+PrintSharedArchiveAndExit");53output = new OutputAnalyzer(pb.start());54output.shouldContain("archive is valid");55output.shouldNotContain("Usage:"); // Should not print JVM help message56output.shouldHaveExitValue(0); // Should report success in error code.5758// (2) With an invalid archive (boot class path has been prepended)59pb = ProcessTools.createJavaProcessBuilder(60"-Xbootclasspath/p:foo.jar",61"-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./sample.jsa",62"-XX:+PrintSharedArchiveAndExit", "-version");63output = new OutputAnalyzer(pb.start());64output.shouldContain("archive is invalid");65output.shouldNotContain("java version"); // Should not print JVM version66output.shouldHaveExitValue(1); // Should report failure in error code.6768pb = ProcessTools.createJavaProcessBuilder(69"-Xbootclasspath/p:foo.jar",70"-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./sample.jsa",71"-XX:+PrintSharedArchiveAndExit");72output = new OutputAnalyzer(pb.start());73output.shouldContain("archive is invalid");74output.shouldNotContain("Usage:"); // Should not print JVM help message75output.shouldHaveExitValue(1); // Should report failure in error code.76} catch (RuntimeException e) {77e.printStackTrace();78output.shouldContain("Unable to use shared archive");79output.shouldHaveExitValue(1);80}81}82}838485