1 /*
   2  * Copyright (c) 2015, 2016, 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  * @bug 8136421
  27  * @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9" | os.simpleArch == "aarch64")
  28  * @library /testlibrary /
  29  * @modules jdk.vm.ci/jdk.vm.ci.hotspot
  30  *          jdk.vm.ci/jdk.vm.ci.code
  31  *          jdk.vm.ci/jdk.vm.ci.meta
  32  *          jdk.vm.ci/jdk.vm.ci.runtime
  33  * @build compiler.jvmci.common.JVMCIHelpers
  34  *        compiler.jvmci.events.JvmciShutdownEventListener
  35  *        compiler.jvmci.events.JvmciShutdownEventTest
  36  * @run main jdk.test.lib.FileInstaller ../common/services/ ./META-INF/services/
  37  * @run main jdk.test.lib.FileInstaller ./JvmciShutdownEventTest.config
  38  *     ./META-INF/services/jdk.vm.ci.hotspot.HotSpotVMEventListener
  39  * @run main ClassFileInstaller
  40  *     compiler.jvmci.common.JVMCIHelpers$EmptyHotspotCompiler
  41  *     compiler.jvmci.common.JVMCIHelpers$EmptyCompilerFactory
  42  *     compiler.jvmci.events.JvmciShutdownEventListener
  43  * @run main/othervm compiler.jvmci.events.JvmciShutdownEventTest
  44  */
  45 
  46  // as soon as CODETOOLS-7901589 fixed, '@run main/othervm' at L43 should be replaced w/ '@run driver'
  47 
  48 package compiler.jvmci.events;
  49 
  50 import jdk.test.lib.ExitCode;
  51 import jdk.test.lib.cli.CommandLineOptionTest;
  52 
  53 public class JvmciShutdownEventTest {
  54     private final static String[] MESSAGE = new String[]{
  55         JvmciShutdownEventListener.MESSAGE
  56     };
  57 
  58     private final static String[] ERROR_MESSAGE = new String[]{
  59         JvmciShutdownEventListener.GOT_INTERNAL_ERROR
  60     };
  61 
  62     public static void main(String args[]) throws Throwable {
  63         boolean addTestVMOptions = true;
  64         CommandLineOptionTest.verifyJVMStartup(MESSAGE, ERROR_MESSAGE,
  65                 "Unexpected exit code with +EnableJVMCI",
  66                 "Unexpected output with +EnableJVMCI", ExitCode.OK,
  67                 addTestVMOptions, "-XX:+UnlockExperimentalVMOptions",
  68                 "-XX:+EnableJVMCI", "-Xbootclasspath/a:.",
  69                 JvmciShutdownEventListener.class.getName()
  70         );
  71 
  72         CommandLineOptionTest.verifyJVMStartup(ERROR_MESSAGE, MESSAGE,
  73                 "Unexpected exit code with -EnableJVMCI",
  74                 "Unexpected output with -EnableJVMCI", ExitCode.OK,
  75                 addTestVMOptions, "-XX:+UnlockExperimentalVMOptions",
  76                 "-XX:-EnableJVMCI", "-Xbootclasspath/a:.",
  77                 JvmciShutdownEventListener.class.getName()
  78         );
  79     }
  80 }