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.SingleAOTOptionTest
  31  *        compiler.aot.AotCompiler
  32  * @run driver compiler.aot.AotCompiler -libname libSingleAOTOptionTest.so
  33  *      -class compiler.aot.HelloWorldPrinter
  34  *      -compile compiler.aot.HelloWorldPrinter.print()V
  35  *      -extraopt -XX:+UseCompressedOops
  36  * @run driver compiler.aot.cli.SingleAOTOptionTest -XX:+UseCompressedOops
  37  *      -XX:AOTLibrary=./libSingleAOTOptionTest.so
  38  * @run main compiler.aot.cli.SingleAOTOptionTest
  39  *      -XX:+UseCompressedOops -XX:+UseAOT
  40  * @run driver compiler.aot.AotCompiler -libname libSingleAOTOptionTest.so
  41  *      -class compiler.aot.HelloWorldPrinter
  42  *      -compile compiler.aot.HelloWorldPrinter.print()V
  43  *      -extraopt -XX:-UseCompressedOops
  44  * @run driver compiler.aot.cli.SingleAOTOptionTest -XX:-UseCompressedOops
  45  *      -XX:AOTLibrary=./libSingleAOTOptionTest.so
  46  * @run driver compiler.aot.cli.SingleAOTOptionTest
  47  *      -XX:-UseCompressedOops -XX:+UseAOT
  48  * @summary check if specifying only one aot option handled properly
  49  */
  50 
  51 package compiler.aot.cli;
  52 
  53 import compiler.aot.HelloWorldPrinter;
  54 import jdk.test.lib.process.ExitCode;
  55 import jdk.test.lib.cli.CommandLineOptionTest;
  56 
  57 public class SingleAOTOptionTest {
  58     private static final String[] EXPECTED_MESSAGES = new String[] {
  59         HelloWorldPrinter.MESSAGE
  60     };
  61     private static final String[] UNEXPECTED_MESSAGES = null;
  62 
  63     public static void main(String args[]) {
  64         if (args.length == 2) {
  65             new SingleAOTOptionTest().runTest(args[0], args[1]);
  66         } else {
  67             throw new Error("Test expects 2 parameters");
  68         }
  69     }
  70 
  71     private void runTest(String arg1, String arg2) {
  72         try {
  73             String exitCodeErrorMessage = String.format("Unexpected exit code "
  74                     + "using %s and %s", arg1, arg2);
  75             String outputErrorMessage = String.format("Unexpected output using"
  76                     + " %s and %s", arg1, arg2);
  77             boolean addTestVMOptions = true;
  78             CommandLineOptionTest.verifyJVMStartup(EXPECTED_MESSAGES,
  79                     UNEXPECTED_MESSAGES, exitCodeErrorMessage,
  80                     outputErrorMessage, ExitCode.OK, addTestVMOptions, arg1,
  81                     arg2, HelloWorldPrinter.class.getName());
  82         } catch (Throwable t) {
  83             throw new Error("Problems executing test: " + t, t);
  84         }
  85     }
  86 
  87 }