< prev index next >

test/compiler/print/PrintInlining.java

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

*** 23,36 **** /* * @test * @bug 8022585 * @summary VM crashes when ran with -XX:+PrintInlining ! * @run main/othervm -Xcomp -XX:+UnlockDiagnosticVMOptions -XX:+PrintInlining PrintInlining * */ public class PrintInlining { public static void main(String[] args) { System.out.println("Passed"); } } --- 23,39 ---- /* * @test * @bug 8022585 * @summary VM crashes when ran with -XX:+PrintInlining ! * @run main/othervm -Xcomp -XX:+UnlockDiagnosticVMOptions -XX:+PrintInlining ! * compiler.print.PrintInlining * */ + package compiler.print; + public class PrintInlining { public static void main(String[] args) { System.out.println("Passed"); } }
< prev index next >