< prev index next >

test/compiler/arraycopy/TestArrayCopyNoInit.java

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

*** 23,36 **** /* * @test * @bug 8064703 * @summary Deoptimization between array allocation and arraycopy may result in non initialized array - * @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement -XX:TypeProfileLevel=020 TestArrayCopyNoInit * */ public class TestArrayCopyNoInit { static int[] m1(int[] src) { int[] dest = new int[10]; try { --- 23,39 ---- /* * @test * @bug 8064703 * @summary Deoptimization between array allocation and arraycopy may result in non initialized array * + * @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement -XX:TypeProfileLevel=020 + * compiler.arraycopy.TestArrayCopyNoInit */ + package compiler.arraycopy; + public class TestArrayCopyNoInit { static int[] m1(int[] src) { int[] dest = new int[10]; try {
< prev index next >