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