< prev index next >

test/compiler/inlining/DefaultMethodsDependencies.java

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

*** 23,36 **** /* * @test * @bug 8069263 * @summary Deoptimization between array allocation and arraycopy may result in non initialized array - * @run main/othervm -XX:-BackgroundCompilation -XX:CompileOnly=DefaultMethodsDependencies::test -XX:CompileOnly=DefaultMethodsDependencies$I2::m1 DefaultMethodsDependencies * */ public class DefaultMethodsDependencies { interface I1 { void m1(); // triggers processing of default methods in C1 --- 23,41 ---- /* * @test * @bug 8069263 * @summary Deoptimization between array allocation and arraycopy may result in non initialized array * + * @run main/othervm -XX:-BackgroundCompilation + * -XX:CompileCommand=compileonly,compiler.inlining.DefaultMethodsDependencies::test + * -XX:CompileCommand=compileonly,compiler.inlining.DefaultMethodsDependencies$I2::m1 + * compiler.inlining.DefaultMethodsDependencies */ + package compiler.inlining; + public class DefaultMethodsDependencies { interface I1 { void m1(); // triggers processing of default methods in C1
< prev index next >