< prev index next >

test/compiler/memoryinitialization/ZeroTLABTest.java

Print this page

        

*** 23,37 **** */ /* * @test * @bug 8086053 ! * @run main/othervm -Xcomp -XX:+UseTLAB -XX:+ZeroTLAB ZeroTLABTest ! * @run main/othervm -Xcomp -XX:+UseTLAB -XX:-ZeroTLAB ZeroTLABTest ! * @run main/othervm -Xcomp -XX:-UseTLAB -XX:+ZeroTLAB ZeroTLABTest ! * @run main/othervm -Xcomp -XX:-UseTLAB -XX:-ZeroTLAB ZeroTLABTest */ public class ZeroTLABTest { public static void main(String args[]) { System.out.println("Test PASSED"); } } --- 23,41 ---- */ /* * @test * @bug 8086053 ! * ! * @run main/othervm -Xcomp -XX:+UseTLAB -XX:+ZeroTLAB compiler.memoryinitialization.ZeroTLABTest ! * @run main/othervm -Xcomp -XX:+UseTLAB -XX:-ZeroTLAB compiler.memoryinitialization.ZeroTLABTest ! * @run main/othervm -Xcomp -XX:-UseTLAB -XX:+ZeroTLAB compiler.memoryinitialization.ZeroTLABTest ! * @run main/othervm -Xcomp -XX:-UseTLAB -XX:-ZeroTLAB compiler.memoryinitialization.ZeroTLABTest */ + + package compiler.memoryinitialization; + public class ZeroTLABTest { public static void main(String args[]) { System.out.println("Test PASSED"); } }
< prev index next >