8239007: java/math/BigInteger/largeMemory/ tests should be disabled on 32-bit platforms

Reviewed-by: bpb
This commit is contained in:
Aleksey Shipilev 2020-02-13 19:22:32 +01:00
parent 5b4d80d106
commit 1ef862d03d
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@
* @test
* @bug 8022780
* @summary Test division of large values
* @requires os.maxMemory > 8g
* @requires (sun.arch.data.model == "64" & os.maxMemory > 8g)
* @run main/othervm -Xshare:off -Xmx8g DivisionOverflow
* @author Dmitry Nadezhin
*/

View File

@ -25,7 +25,7 @@
* @test
* @bug 8021204
* @summary Test constructor BigInteger(String val, int radix) on very long string
* @requires os.maxMemory > 8g
* @requires (sun.arch.data.model == "64" & os.maxMemory > 8g)
* @run main/othervm -Xshare:off -Xmx8g StringConstructorOverflow
* @author Dmitry Nadezhin
*/

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 os.maxMemory > 8g
* @requires (sun.arch.data.model == "64" & os.maxMemory > 8g)
* @run main/timeout=180/othervm -Xmx8g SymmetricRangeTests
* @author Dmitry Nadezhin
* @key randomness