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