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  * @key 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.MultipleAOTLibraryTest
  31  *        compiler.aot.AotCompiler
  32  * @run driver compiler.aot.AotCompiler
  33  *      -libname libMultipleAOTLibraryTest1.so
  34  *      -class compiler.aot.HelloWorldPrinter
  35  *      -compile compiler.aot.HelloWorldPrinter.*
  36  *      -extraopt -XX:+UseCompressedOops
  37  * @run driver compiler.aot.AotCompiler
  38  *      -libname libMultipleAOTLibraryTest2.so
  39  *      -class compiler.aot.HelloWorldPrinter
  40  *      -compile compiler.aot.HelloWorldPrinter.print()V
  41  *      -extraopt -XX:+UseCompressedOops
  42  * @run driver compiler.aot.cli.MultipleAOTLibraryTest -XX:+UseCompressedOops
  43  * @run driver compiler.aot.AotCompiler -libname libMultipleAOTLibraryTest1.so
  44  *      -class compiler.aot.HelloWorldPrinter
  45  *      -compile compiler.aot.HelloWorldPrinter.*
  46  *      -extraopt -XX:-UseCompressedOops
  47  * @run driver compiler.aot.AotCompiler -libname libMultipleAOTLibraryTest2.so
  48  *      -class compiler.aot.HelloWorldPrinter
  49  *      -compile compiler.aot.HelloWorldPrinter.print()V
  50  *      -extraopt -XX:-UseCompressedOops
  51  * @run driver compiler.aot.cli.MultipleAOTLibraryTest -XX:-UseCompressedOops
  52  * @summary check if multiple aot libraries are loaded successfully
  53  */
  54 
  55 package compiler.aot.cli;
  56 
  57 import compiler.aot.HelloWorldPrinter;
  58 import java.util.Arrays;
  59 import jdk.test.lib.process.ExitCode;
  60 import jdk.test.lib.cli.CommandLineOptionTest;
  61 
  62 public final class MultipleAOTLibraryTest {
  63     private final static String EXPECTED_OUTPUT[] = new String[] {
  64                 "libMultipleAOTLibraryTest1.so  aot library",
  65                 "libMultipleAOTLibraryTest2.so  aot library",
  66                 HelloWorldPrinter.MESSAGE
  67     };
  68     private final static String UNEXPECTED_OUTPUT[] = null;
  69 
  70     public static void main(String args[]) {
  71         new MultipleAOTLibraryTest().runTest(args);
  72     }
  73 
  74     private void runTest(String args[]) {
  75         try {
  76             boolean addTestVMOptions = true;
  77             String[] allArgs = Arrays.copyOf(args, args.length + 4);
  78             allArgs[args.length] = "-XX:AOTLibrary="
  79                     + "./libMultipleAOTLibraryTest1.so:"
  80                     + "./libMultipleAOTLibraryTest2.so";
  81             allArgs[args.length + 1] = "-XX:+PrintAOT";
  82             allArgs[args.length + 2] = "-XX:+UseAOT";
  83             allArgs[args.length + 3] = HelloWorldPrinter.class.getName();
  84             CommandLineOptionTest.verifyJVMStartup(EXPECTED_OUTPUT,
  85                     UNEXPECTED_OUTPUT, "Unexpected exit code",
  86                     "Unexpected output", ExitCode.OK, addTestVMOptions,
  87                     allArgs);
  88         } catch (Throwable t) {
  89             throw new Error("Problems executing test: " + t, t);
  90         }
  91     }
  92 }