< prev index next >

test/compiler/gcbarriers/G1CrashTest.java

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

*** 25,39 **** /** * @test * @bug 8023472 * @summary C2 optimization breaks with G1 * ! * @run main/othervm -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation -Dcount=100000 G1CrashTest * * @author pbiswal@palantir.com */ public class G1CrashTest { static Object[] set = new Object[11]; public static void main(String[] args) throws InterruptedException { for (int j = 0; j < Integer.getInteger("count"); j++) { --- 25,42 ---- /** * @test * @bug 8023472 * @summary C2 optimization breaks with G1 * ! * @run main/othervm -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation ! * -Dcount=100000 compiler.gcbarriers.G1CrashTest * * @author pbiswal@palantir.com */ + package compiler.gcbarriers; + public class G1CrashTest { static Object[] set = new Object[11]; public static void main(String[] args) throws InterruptedException { for (int j = 0; j < Integer.getInteger("count"); j++) {
< prev index next >