Skip to content

Commit 7146104

Browse files
mychrisshipilev
authored andcommittedApr 21, 2021
8265421: java/lang/String/StringRepeat.java test is missing a memory requirement
Reviewed-by: jlaskey, shade, ryadav
1 parent b5c92ca commit 7146104

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed
 

‎test/jdk/java/lang/String/StringRepeat.java

+18-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,24 +24,36 @@
2424
/*
2525
* @test
2626
* @summary This exercises String#repeat patterns and limits.
27-
* @run main/othervm -Xmx2g StringRepeat
27+
* @run main/othervm StringRepeat
28+
*/
29+
30+
/*
31+
* @test
32+
* @summary This exercises String#repeat patterns with 16 * 1024 * 1024 repeats.
33+
* @requires os.maxMemory >= 2G
34+
* @run main/othervm -Xmx2g StringRepeat 16777216
2835
*/
2936

3037
import java.nio.CharBuffer;
3138

3239
public class StringRepeat {
33-
public static void main(String... arg) {
40+
public static void main(String... args) {
41+
if (args.length > 0) {
42+
REPEATS = new int[args.length];
43+
for (int i = 0; i < args.length; ++i) {
44+
REPEATS[i] = Integer.parseInt(args[i]);
45+
}
46+
}
3447
test1();
3548
test2();
3649
}
3750

3851
/*
39-
* Varitions of repeat count.
52+
* Default varitions of repeat count.
4053
*/
4154
static int[] REPEATS = {
4255
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
43-
32, 64, 128, 256, 512, 1024, 64 * 1024, 1024 * 1024,
44-
16 * 1024 * 1024
56+
32, 64, 128, 256, 512, 1024, 64 * 1024, 1024 * 1024
4557
};
4658

4759
/*

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Apr 21, 2021

@openjdk-notifier[bot]
Please sign in to comment.