< prev index next >

test/compiler/c1/NullCheckTest.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke

@@ -25,13 +25,18 @@
 /**
  * @test
  * @bug 6478991
  * @summary C1 NullCheckEliminator yields incorrect exceptions
  *
- * @run main/othervm -XX:CompileOnly=NullCheckTest.test,NullCheckTest.inlined  -Xcomp NullCheckTest
+ * @run main/othervm -Xcomp
+ *      -XX:CompileCommand=compileonly,compiler.c1.NullCheckTest::test
+ *      -XX:CompileCommand=compileonly,compiler.c1.NullCheckTest::inlined
+ *      compiler.c1.NullCheckTest
  */
 
+package compiler.c1;
+
 public class NullCheckTest {
         static class A {
                 int f;
 
                 public final void inlined(A a) {
< prev index next >