From 76058dcaadd113c1bcb8a3f45a265f862e823800 Mon Sep 17 00:00:00 2001 From: tschatzl Date: Mon, 21 Jul 2014 09:40:19 +0200 Subject: [PATCH] 8026847: [TESTBUG] gc/g1/TestSummarizeRSetStats* tests launch 32bit jvm with UseCompressedOops Summary: The test launched a 32 bit VM with UseCompressedOops enabled. This is not supported on 32 bit VMs, causing a test failure. Investigation showed that the use of this flag is not required at all, so simply remove it. Reviewed-by: tschatzl, jwilhelm Contributed-by: Andrey Zakharov --- test/gc/g1/TestSummarizeRSetStatsTools.java | 1 - 1 file changed, 1 deletion(-) diff --git a/test/gc/g1/TestSummarizeRSetStatsTools.java b/test/gc/g1/TestSummarizeRSetStatsTools.java index 096a7c675..1ab832229 100644 --- a/test/gc/g1/TestSummarizeRSetStatsTools.java +++ b/test/gc/g1/TestSummarizeRSetStatsTools.java @@ -88,7 +88,6 @@ public class TestSummarizeRSetStatsTools { ArrayList finalargs = new ArrayList(); String[] defaultArgs = new String[] { "-XX:+UseG1GC", - "-XX:+UseCompressedOops", "-Xmn4m", "-Xmx20m", "-XX:InitiatingHeapOccupancyPercent=100", // we don't want the additional GCs due to initial marking -- GitLab