8068733: [TESTBUG] runtime/Unsafe/Reallocate.java sometimes fails when running with -Xcomp
authorctornqvi
Fri, 09 Jan 2015 08:34:32 -0800
changeset 28473 cff666a4057d
parent 28472 062017e01e52
child 28474 a73f0b1afca7
8068733: [TESTBUG] runtime/Unsafe/Reallocate.java sometimes fails when running with -Xcomp Reviewed-by: coleenp, gtriantafill
hotspot/test/runtime/Unsafe/Reallocate.java
--- a/hotspot/test/runtime/Unsafe/Reallocate.java	Fri Jan 09 09:26:58 2015 +0100
+++ b/hotspot/test/runtime/Unsafe/Reallocate.java	Fri Jan 09 08:34:32 2015 -0800
@@ -25,7 +25,7 @@
  * @test
  * @bug 8058897
  * @library /testlibrary
- * @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:MallocMaxTestWords=20m Reallocate
+ * @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:MallocMaxTestWords=100m Reallocate
  */
 
 import com.oracle.java.testlibrary.*;
@@ -57,7 +57,7 @@
 
         // Make sure we can throw an OOME when we fail to reallocate due to OOM
         try {
-            unsafe.reallocateMemory(address, 20 * 1024 * 1024 * 8);
+            unsafe.reallocateMemory(address, 100 * 1024 * 1024 * 8);
         } catch (OutOfMemoryError e) {
             // Expected
             return;