< prev index next >

test/compiler/interpreter/Test6833129.java

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

@@ -23,14 +23,17 @@
 
 /**
  * @test
  * @bug 6833129
  * @summary Object.clone() and Arrays.copyOf ignore coping with -XX:+DeoptimizeALot
- * @run main/othervm -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:+DeoptimizeALot Test
+ * @run main/othervm -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:+DeoptimizeALot
+ *      compiler.interpreter.Test6833129
  */
 
-public class Test{
+package compiler.interpreter;
+
+public class Test6833129 {
     public static void init(int src[]) {
         for (int i =0; i<src.length; i++) {
             src[i] =  i;
         }
     }
< prev index next >