< prev index next >

test/hotspot/jtreg/runtime/SharedArchiveFile/PrintSharedArchiveAndExit.java

Print this page




  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  * @test
  26  * @bug 8066670
  27  * @summary Testing -XX:+PrintSharedArchiveAndExit option
  28  * @requires vm.cds
  29  * @library /test/lib
  30  * @modules java.base/jdk.internal.misc
  31  *          java.management
  32  */
  33 
  34 import jdk.test.lib.cds.CDSOptions;
  35 import jdk.test.lib.cds.CDSTestUtils;
  36 import jdk.test.lib.process.ProcessTools;
  37 import jdk.test.lib.process.OutputAnalyzer;
  38 
  39 
  40 public class PrintSharedArchiveAndExit {
  41     public static void main(String[] args) throws Exception {
  42         String archiveName = "PrintSharedArchiveAndExit.jsa";
  43         CDSOptions opts = (new CDSOptions()).setArchiveName(archiveName);
  44         OutputAnalyzer out = CDSTestUtils.createArchive(opts);
  45         CDSTestUtils.checkDump(out);
  46 
  47         // (1) With a valid archive
  48         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  49                 "-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./" + archiveName,
  50                 "-XX:+PrintSharedArchiveAndExit", "-version");
  51         out = CDSTestUtils.executeAndLog(pb, "print-shared-archive-and-version");
  52         if (!CDSTestUtils.isUnableToMap(out)) {



  53             out.shouldContain("archive is valid")
  54                 .shouldNotContain("java version")     // Should not print JVM version
  55                 .shouldHaveExitValue(0);              // Should report success in error code.
  56         }
  57 
  58         pb = ProcessTools.createJavaProcessBuilder(
  59                 "-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./" + archiveName,
  60                 "-XX:+PrintSharedArchiveAndExit");
  61         out = CDSTestUtils.executeAndLog(pb, "print-shared-archive");
  62         if (!CDSTestUtils.isUnableToMap(out)) {



  63             out.shouldContain("archive is valid")
  64                 .shouldNotContain("Usage:")           // Should not print JVM help message
  65                 .shouldHaveExitValue(0);               // Should report success in error code.
  66         }
  67     }
  68 }


  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  * @test
  26  * @bug 8066670
  27  * @summary Testing -XX:+PrintSharedArchiveAndExit option
  28  * @requires vm.cds
  29  * @library /test/lib
  30  * @modules java.base/jdk.internal.misc
  31  *          java.management
  32  */
  33 
  34 import jdk.test.lib.cds.CDSOptions;
  35 import jdk.test.lib.cds.CDSTestUtils;
  36 import jdk.test.lib.process.ProcessTools;
  37 import jdk.test.lib.process.OutputAnalyzer;
  38 import jtreg.SkippedException;
  39 
  40 public class PrintSharedArchiveAndExit {
  41     public static void main(String[] args) throws Exception {
  42         String archiveName = "PrintSharedArchiveAndExit.jsa";
  43         CDSOptions opts = (new CDSOptions()).setArchiveName(archiveName);
  44         OutputAnalyzer out = CDSTestUtils.createArchive(opts);
  45         CDSTestUtils.checkDump(out);
  46 
  47         // (1) With a valid archive
  48         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  49                 "-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./" + archiveName,
  50                 "-XX:+PrintSharedArchiveAndExit", "-version");
  51         out = CDSTestUtils.executeAndLog(pb, "print-shared-archive-and-version");
  52 
  53         if (CDSTestUtils.isUnableToMap(out)) {
  54             throw new SkippedException(CDSTestUtils.UnableToMapMsg);
  55         } else {
  56             out.shouldContain("archive is valid")
  57                 .shouldNotContain("java version")     // Should not print JVM version
  58                 .shouldHaveExitValue(0);              // Should report success in error code.
  59         }
  60 
  61         pb = ProcessTools.createJavaProcessBuilder(
  62                 "-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./" + archiveName,
  63                 "-XX:+PrintSharedArchiveAndExit");
  64         out = CDSTestUtils.executeAndLog(pb, "print-shared-archive");
  65 
  66         if (CDSTestUtils.isUnableToMap(out)) {
  67             throw new SkippedException(CDSTestUtils.UnableToMapMsg);
  68         } else {
  69             out.shouldContain("archive is valid")
  70                 .shouldNotContain("Usage:")           // Should not print JVM help message
  71                 .shouldHaveExitValue(0);              // Should report success in error code.
  72         }
  73     }
  74 }
< prev index next >