|
1 | 1 | /*
|
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. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
24 | 24 | /*
|
25 | 25 | * @test
|
26 | 26 | * @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 |
28 | 35 | */
|
29 | 36 |
|
30 | 37 | import java.nio.CharBuffer;
|
31 | 38 |
|
32 | 39 | 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 | + } |
34 | 47 | test1();
|
35 | 48 | test2();
|
36 | 49 | }
|
37 | 50 |
|
38 | 51 | /*
|
39 |
| - * Varitions of repeat count. |
| 52 | + * Default varitions of repeat count. |
40 | 53 | */
|
41 | 54 | static int[] REPEATS = {
|
42 | 55 | 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 |
45 | 57 | };
|
46 | 58 |
|
47 | 59 | /*
|
|
1 commit comments
openjdk-notifier[bot] commentedon Apr 21, 2021
Review
Issues