< prev index next >

test/compiler/c1/Test7103261.java

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

*** 25,37 **** /** * @test * @bug 7103261 * @summary crash with jittester on sparc * ! * @run main Test7103261 */ // exercise implicit null checking in the compiler for various field types public class Test7103261 { static Test7103261 null_value; static Test7103261 nonnull_value = new Test7103261(); static Test7103261 nonnull_value2 = new Test7103261(); --- 25,39 ---- /** * @test * @bug 7103261 * @summary crash with jittester on sparc * ! * @run main compiler.c1.Test7103261 */ + package compiler.c1; + // exercise implicit null checking in the compiler for various field types public class Test7103261 { static Test7103261 null_value; static Test7103261 nonnull_value = new Test7103261(); static Test7103261 nonnull_value2 = new Test7103261();
< prev index next >