1 /*
   2  * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  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  * @requires vm.aot
  27  * @library /test/lib / /testlibrary
  28  * @modules java.base/jdk.internal.misc
  29  * @requires vm.bits == "64" & (os.arch == "amd64" | os.arch == "x86_64")
  30  * @build compiler.aot.cli.SingleAOTLibraryTest
  31  *        compiler.aot.AotCompiler
  32  * @run driver compiler.aot.AotCompiler -libname libSingleAOTLibraryTest.so
  33  *      -class compiler.aot.HelloWorldPrinter
  34  *      -compile compiler.aot.HelloWorldPrinter.print()V
  35  *      -extraopt -XX:+UseCompressedOops
  36  * @run driver compiler.aot.cli.SingleAOTLibraryTest -XX:+UseCompressedOops
  37  * @run driver compiler.aot.AotCompiler -libname libSingleAOTLibraryTest.so
  38  *      -class compiler.aot.HelloWorldPrinter
  39  *      -compile compiler.aot.HelloWorldPrinter.print()V
  40  *      -extraopt -XX:-UseCompressedOops
  41  * @run driver compiler.aot.cli.SingleAOTLibraryTest -XX:-UseCompressedOops
  42  * @summary check if single aot library is loaded successfully
  43  */
  44 
  45 package compiler.aot.cli;
  46 
  47 import compiler.aot.HelloWorldPrinter;
  48 import jdk.test.lib.process.ExitCode;
  49 import jdk.test.lib.cli.CommandLineOptionTest;
  50 
  51 public final class SingleAOTLibraryTest {
  52     private static final String[] EXPECTED_MESSAGES = new String[] {
  53         "libSingleAOTLibraryTest.so  aot library",
  54         HelloWorldPrinter.MESSAGE
  55     };
  56     private static final String[] UNEXPECTED_MESSAGES = null;
  57     public static void main(String args[]) {
  58         if (args.length == 1) {
  59             new SingleAOTLibraryTest().runTest(args[0]);
  60         } else {
  61             throw new Error("Test expects 1 parameter");
  62         }
  63     }
  64 
  65     private void runTest(String arg) {
  66         try {
  67             boolean addTestVMOptions = true;
  68             CommandLineOptionTest.verifyJVMStartup(EXPECTED_MESSAGES,
  69                     UNEXPECTED_MESSAGES, "Unexpected exit code using " + arg,
  70                     "Unexpected output using " + arg, ExitCode.OK,
  71                     addTestVMOptions, "-XX:+UseAOT", "-XX:+PrintAOT", arg,
  72                     "-XX:AOTLibrary=./libSingleAOTLibraryTest.so",
  73                     HelloWorldPrinter.class.getName());
  74         } catch (Throwable t) {
  75             throw new Error("Problems executing test: " + t, t);
  76         }
  77     }
  78 }