< prev index next >

test/compiler/intrinsics/string/TestStringConstruction.java

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

*** 23,34 **** /* * @test * @bug 8142303 * @summary Tests handling of invalid array indices in C2 intrinsic if explicit range check in Java code is not inlined. ! * @run main/othervm -XX:CompileCommand=inline,java.lang.String::* -XX:CompileCommand=inline,java.lang.StringUTF16::* -XX:CompileCommand=exclude,java.lang.String::checkBoundsOffCount TestStringConstruction */ public class TestStringConstruction { public static void main(String[] args) { char[] chars = new char[42]; for (int i = 0; i < 10_000; ++i) { --- 23,42 ---- /* * @test * @bug 8142303 * @summary Tests handling of invalid array indices in C2 intrinsic if explicit range check in Java code is not inlined. ! * ! * @run main/othervm ! * -XX:CompileCommand=inline,java.lang.String::* ! * -XX:CompileCommand=inline,java.lang.StringUTF16::* ! * -XX:CompileCommand=exclude,java.lang.String::checkBoundsOffCount ! * compiler.intrinsics.string.TestStringConstruction */ + + package compiler.intrinsics.string; + public class TestStringConstruction { public static void main(String[] args) { char[] chars = new char[42]; for (int i = 0; i < 10_000; ++i) {
< prev index next >