< prev index next >

test/compiler/startup/TieredStopAtLevel0SanityTest.java

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

@@ -23,13 +23,17 @@
 
 /*
  * @test
  * @bug 8154151
  * @summary Sanity test flag combo that force compiles on level 0
- * @run main/othervm -Xcomp -XX:+UnlockDiagnosticVMOptions -XX:TieredStopAtLevel=0 TieredStopAtLevel0SanityTest
+ *
+ * @run main/othervm -Xcomp -XX:+UnlockDiagnosticVMOptions -XX:TieredStopAtLevel=0
+ *                   compiler.startup.TieredStopAtLevel0SanityTest
  */
 
+package compiler.startup;
+
 public class TieredStopAtLevel0SanityTest {
     public static void main(String[] args) throws Exception {
         System.out.println("Hello world!");
     }
 }
< prev index next >