< prev index next >

test/compiler/loopopts/Test6855164.java

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

@@ -23,14 +23,17 @@
 
 /*
  * @test
  * @bug 6855164
  * @summary SIGSEGV during compilation of method involving loop over CharSequence
- * @run main/othervm -Xbatch Test
+ *
+ * @run main/othervm -Xbatch compiler.loopopts.Test6855164
  */
 
-public class Test{
+package compiler.loopopts;
+
+public class Test6855164 {
     public static void main(String[] args) throws Exception {
         StringBuffer builder = new StringBuffer();
 
         for(int i = 0; i < 100; i++)
             builder.append("I am the very model of a modern major general\n");
< prev index next >