< prev index next >

test/compiler/c2/Test6901572.java

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

*** 24,38 **** /** * @test * @bug 6901572 * @summary JVM 1.6.16 crash on loops: assert(has_node(i),"") * ! * @run main/othervm Test */ ! public class Test { public static void main(String[] args) { for (int i = 0; i < 2; i++) NestedLoop(); } --- 24,39 ---- /** * @test * @bug 6901572 * @summary JVM 1.6.16 crash on loops: assert(has_node(i),"") * ! * @run main/othervm compiler.c2.Test6901572 */ + package compiler.c2; ! public class Test6901572 { public static void main(String[] args) { for (int i = 0; i < 2; i++) NestedLoop(); }
< prev index next >