< prev index next >

test/compiler/loopopts/Test6855164.java

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

*** 23,36 **** /* * @test * @bug 6855164 * @summary SIGSEGV during compilation of method involving loop over CharSequence ! * @run main/othervm -Xbatch Test */ ! public class Test{ 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"); --- 23,39 ---- /* * @test * @bug 6855164 * @summary SIGSEGV during compilation of method involving loop over CharSequence ! * ! * @run main/othervm -Xbatch compiler.loopopts.Test6855164 */ ! 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 >