< prev index next >

test/compiler/runtime/safepoints/TestRegisterRestoring.java

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

@@ -25,12 +25,19 @@
 
 /**
  * @test
  * @bug 8148490
  * @summary Test correct saving and restoring of vector registers at safepoints.
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -Xbatch -XX:-TieredCompilation -XX:CompileCommand=exclude,TestRegisterRestoring::main -XX:+SafepointALot TestRegisterRestoring
+ *
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -Xbatch -XX:-TieredCompilation
+ *                   -XX:+SafepointALot
+ *                   -XX:CompileCommand=exclude,compiler.runtime.safepoints.TestRegisterRestoring::main
+ *                   compiler.runtime.safepoints.TestRegisterRestoring
  */
+
+package compiler.runtime.safepoints;
+
 public class TestRegisterRestoring {
   public static void main(String args[]) throws Exception {
     // Initialize
     float[] array = new float[100];
     for (int i = 0; i < array.length; ++i) {
< prev index next >