< prev index next >

test/hotspot/jtreg/gc/TestCardTablePageCommits.java

Print this page
rev 59383 : [mq]: final

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -40,11 +40,11 @@
 public class TestCardTablePageCommits {
     public static void main(String args[]) throws Exception {
         // The test is run with a small heap to make sure all pages in the card
         // table gets committed. Need 8 MB heap to trigger the bug on SPARC
         // because of 8kB pages, assume 4 KB pages for all other CPUs.
-        String Xmx = Platform.isSparc() ? "-Xmx8m" : "-Xmx4m";
+        String Xmx = "-Xmx4m";
 
         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
             Xmx,
             "-XX:NativeMemoryTracking=detail",
             "-XX:+UseParallelGC",
< prev index next >