Skip to content

Commit 9166ba3

Browse files
committed
8272973: Incorrect compile command used by TestIllegalArrayCopyBeforeInfiniteLoop
Reviewed-by: chagedorn, jiefu, neliasso
1 parent 49b2789 commit 9166ba3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/hotspot/jtreg/compiler/arraycopy/TestIllegalArrayCopyBeforeInfiniteLoop.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* @requires vm.compiler2.enabled
2828
* @summary ArrayCopy with negative index before infinite loop
2929
* @run main/othervm -Xbatch -XX:-TieredCompilation
30-
* -XX:CompileCommand=compileonly,"*TestIllegalArrayCopyBeforeInfiniteLoop::foo"
30+
* -XX:CompileCommand=compileonly,compiler.arraycopy.TestIllegalArrayCopyBeforeInfiniteLoop::foo
3131
* compiler.arraycopy.TestIllegalArrayCopyBeforeInfiniteLoop
3232
*/
3333

@@ -38,7 +38,7 @@
3838
public class TestIllegalArrayCopyBeforeInfiniteLoop {
3939
private static char src[] = new char[10];
4040
private static int count = 0;
41-
private static final int iter = 10_000;
41+
private static final int iter = 20_000;
4242

4343
public static void main(String[] args) throws Exception {
4444
for (int i = 0; i < iter; ++i) {

0 commit comments

Comments
 (0)