< prev index next >

test/compiler/c2/cr8004867/TestIntUnsafeVolatile.java

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

@@ -24,19 +24,26 @@
 
 /**
  * @test
  * @bug 8004867
  * @summary VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
- *
  * @modules java.base/jdk.internal.misc
- * @run main/othervm/timeout=300 -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation -XX:-OptimizeFill TestIntUnsafeVolatile
- * @run main/othervm/timeout=300 -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation -XX:+OptimizeFill TestIntUnsafeVolatile
+ *
+ * @run main/othervm/timeout=300 -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation
+ *    -XX:-OptimizeFill
+ *    compiler.c2.cr8004867.TestIntUnsafeVolatile
+ * @run main/othervm/timeout=300 -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation
+ *    -XX:+OptimizeFill
+ *    compiler.c2.cr8004867.TestIntUnsafeVolatile
  */
 
+package compiler.c2.cr8004867;
+
 import jdk.internal.misc.Unsafe;
-import java.lang.reflect.*;
 
+import java.lang.reflect.Field;
+
 public class TestIntUnsafeVolatile {
   private static final int ARRLEN = 97;
   private static final int ITERS  = 11000;
   private static final int OFFSET = 3;
   private static final int SCALE = 2;
< prev index next >