< prev index next >

test/compiler/c2/Test6910605_1.java

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

@@ -24,19 +24,20 @@
 
 /**
  * @test
  * @bug 6910605
  * @summary C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
- *
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+DeoptimizeALot -Xbatch Test
- *
  * original test: nsk/coverage/runtime/runtime007
+ *
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+DeoptimizeALot -Xbatch compiler.c2.Test6910605_1
  */
 
-import java.io.*;
+package compiler.c2;
 
-public class Test {
+import java.io.PrintStream;
+
+public class Test6910605_1 {
         public static int buf=0;
 
         public static void main( String argv[] ) {
                 System.exit(run(argv, System.out)+95);
         }
< prev index next >