< prev index next >

test/compiler/rangechecks/TestUncommonTrapMerging.java

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

*** 23,35 **** /* * @test * @bug 8140574 * @summary Verify proper re-execution of checks after merging of uncommon traps ! * @run main/othervm -Xcomp -XX:-TieredCompilation -XX:CompileCommand=compileonly,TestUncommonTrapMerging::test* TestUncommonTrapMerging Test1 ! * @run main/othervm -XX:CompileCommand=compileonly,TestUncommonTrapMerging::test* TestUncommonTrapMerging Test2 */ public class TestUncommonTrapMerging { public static void main(String[] args) throws Throwable { if (args.length < 1) { throw new RuntimeException("Not enough arguments!"); --- 23,42 ---- /* * @test * @bug 8140574 * @summary Verify proper re-execution of checks after merging of uncommon traps ! * ! * @run main/othervm -Xcomp -XX:-TieredCompilation ! * -XX:CompileCommand=compileonly,TestUncommonTrapMerging::test* ! * compiler.rangechecks.TestUncommonTrapMerging Test1 ! * @run main/othervm -XX:CompileCommand=compileonly,TestUncommonTrapMerging::test* ! * compiler.rangechecks.TestUncommonTrapMerging Test2 */ + + package compiler.rangechecks; + public class TestUncommonTrapMerging { public static void main(String[] args) throws Throwable { if (args.length < 1) { throw new RuntimeException("Not enough arguments!");
< prev index next >