< prev index next >

test/compiler/compilercontrol/TestCompilerDirectivesCompatibilityBase.java

Print this page




   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 TestCompilerDirectivesCompatibilityBase
  26  * @bug 8137167
  27  * @summary Test compiler control compatibility with compile command
  28  * @library /testlibrary /test/lib /
  29  * @modules java.base/jdk.internal.misc
  30  *          java.compiler
  31  *          java.management
  32  *
  33  * @build jdk.test.lib.*
  34  *        jdk.test.lib.dcmd.*
  35  *        sun.hotspot.WhiteBox
  36  *        compiler.testlibrary.CompilerUtils
  37  *        compiler.compilercontrol.TestCompilerDirectivesCompatibilityBase
  38  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  39  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  40  * @run testng/othervm -Xbootclasspath/a:. -Xmixed -XX:+UnlockDiagnosticVMOptions
  41  *      -XX:+WhiteBoxAPI
  42  *      compiler.compilercontrol.TestCompilerDirectivesCompatibilityBase
  43  */
  44 
  45 package compiler.compilercontrol;
  46 
  47 import compiler.testlibrary.CompilerUtils;
  48 import compiler.whitebox.CompilerWhiteBoxTest;
  49 import jdk.test.lib.dcmd.CommandExecutor;
  50 import jdk.test.lib.dcmd.JMXExecutor;
  51 import org.testng.annotations.Test;
  52 import sun.hotspot.WhiteBox;
  53 
  54 import java.io.File;
  55 import java.lang.reflect.Method;
  56 
  57 public class TestCompilerDirectivesCompatibilityBase {




   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 TestCompilerDirectivesCompatibilityBase
  26  * @bug 8137167
  27  * @summary Test compiler control compatibility with compile command
  28  * @library /test/lib /
  29  * @modules java.base/jdk.internal.misc
  30  *          java.compiler
  31  *          java.management
  32  *
  33  * @build sun.hotspot.WhiteBox




  34  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  35  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  36  * @run testng/othervm -Xbootclasspath/a:. -Xmixed -XX:+UnlockDiagnosticVMOptions
  37  *      -XX:+WhiteBoxAPI
  38  *      compiler.compilercontrol.TestCompilerDirectivesCompatibilityBase
  39  */
  40 
  41 package compiler.compilercontrol;
  42 
  43 import compiler.testlibrary.CompilerUtils;
  44 import compiler.whitebox.CompilerWhiteBoxTest;
  45 import jdk.test.lib.dcmd.CommandExecutor;
  46 import jdk.test.lib.dcmd.JMXExecutor;
  47 import org.testng.annotations.Test;
  48 import sun.hotspot.WhiteBox;
  49 
  50 import java.io.File;
  51 import java.lang.reflect.Method;
  52 
  53 public class TestCompilerDirectivesCompatibilityBase {


< prev index next >