8232840: java/math/BigInteger/largeMemory/SymmetricRangeTests.java fails due to "OutOfMemoryError: Requested array size exceeds VM limit"

Reviewed-by: alanb
This commit is contained in:
Fernando Guallini 2020-10-01 17:44:23 +00:00 committed by Alan Bateman
parent 8fda5b82f0
commit cfd41c0c1d
2 changed files with 1 additions and 2 deletions

View File

@ -28,4 +28,3 @@
#############################################################################
java/lang/invoke/MethodHandles/CatchExceptionTest.java 8146623 generic-all
java/math/BigInteger/largeMemory/SymmetricRangeTests.java 8232840 generic-all

View File

@ -26,7 +26,7 @@
* @bug 6910473 8021204 8021203 9005933 8074460 8078672
* @summary Test range of BigInteger values (use -Dseed=X to set PRNG seed)
* @library /test/lib
* @requires (sun.arch.data.model == "64" & os.maxMemory > 8g)
* @requires (sun.arch.data.model == "64" & os.maxMemory >= 10g)
* @run main/timeout=180/othervm -Xmx8g -XX:+CompactStrings SymmetricRangeTests
* @author Dmitry Nadezhin
* @key randomness