changeset 19:0831a3bb0271

Rehash mark.arraylist test.
author shade
date Tue, 29 Nov 2016 21:12:47 +0100
parents 277827642a3e
children c9b221c261e3
files src/main/java/org/openjdk/gcbench/GCBench.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/main/java/org/openjdk/gcbench/GCBench.java	Tue Nov 29 21:09:09 2016 +0100
+++ b/src/main/java/org/openjdk/gcbench/GCBench.java	Tue Nov 29 21:12:47 2016 +0100
@@ -202,12 +202,12 @@
 
         {
             String groupDesc = "Allocates the objects in heap, when heap is not empty. This tests how well the collector " +
-                    "can withstand the allocation pressure when there is other potential work to do.";
+                    "can withstand the allocation pressure when there is other potential work to do. ";
 
             tests.add(new DimensionalTest(baseOpts, org.openjdk.gcbench.mark.ArrayLists.class,
                     "mark.arraylist", groupDesc + "Retains ArrayList of given size.",
                     Dimensions.heapSize(8),
-                    Dimensions.size(Sequence.powersOfTen_Sub(1, 1_000_000))
+                    Dimensions.size(Sequence.powersOfTen_Sub(1, 10_000_000))
             ));
         }