Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8260934: java/lang/StringBuilder/HugeCapacity.java fails without Compact Strings #2355

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions test/jdk/java/lang/StringBuilder/HugeCapacity.java
Original file line number Diff line number Diff line change
@@ -27,14 +27,20 @@
* @summary Capacity should not get close to Integer.MAX_VALUE unless
* necessary
* @requires (sun.arch.data.model == "64" & os.maxMemory >= 6G)
* @run main/othervm -Xms5G -Xmx5G HugeCapacity
* @run main/othervm -Xms5G -Xmx5G -XX:+CompactStrings HugeCapacity true
* @run main/othervm -Xms5G -Xmx5G -XX:-CompactStrings HugeCapacity false
*/

public class HugeCapacity {
private static int failures = 0;

public static void main(String[] args) {
testLatin1();
if (args.length == 0) {
throw new IllegalArgumentException("Need the argument");
}
boolean isCompact = Boolean.parseBoolean(args[0]);

testLatin1(isCompact);
testUtf16();
testHugeInitialString();
testHugeInitialCharSequence();
@@ -43,11 +49,12 @@ public static void main(String[] args) {
}
}

private static void testLatin1() {
private static void testLatin1(boolean isCompact) {
try {
int divisor = isCompact ? 2 : 4;
StringBuilder sb = new StringBuilder();
sb.ensureCapacity(Integer.MAX_VALUE / 2);
sb.ensureCapacity(Integer.MAX_VALUE / 2 + 1);
sb.ensureCapacity(Integer.MAX_VALUE / divisor);
sb.ensureCapacity(Integer.MAX_VALUE / divisor + 1);
} catch (OutOfMemoryError oom) {
oom.printStackTrace();
failures++;