From edfcca13e9f40e0dbb03181a6a0b44743648ba98 Mon Sep 17 00:00:00 2001 From: Thomas Schatzl Date: Tue, 30 Sep 2025 21:25:47 +0200 Subject: [PATCH] * align MinHeapSize to heap alignment to avoid issues with conflicting MinHeapSize and SoftMaxHeapSize --- test/hotspot/jtreg/gc/g1/TestSoftMaxHeapSize.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/hotspot/jtreg/gc/g1/TestSoftMaxHeapSize.java b/test/hotspot/jtreg/gc/g1/TestSoftMaxHeapSize.java index 097bfe8a17a..0becd95e7e8 100644 --- a/test/hotspot/jtreg/gc/g1/TestSoftMaxHeapSize.java +++ b/test/hotspot/jtreg/gc/g1/TestSoftMaxHeapSize.java @@ -51,7 +51,7 @@ import java.util.regex.Pattern; public class TestSoftMaxHeapSize { static final int M = 1024 * 1024; - static final int MinHeapSize = 100 * M; + static final int MinHeapSize = 128 * M; static final int MaxHeapSize = 512 * M; // Sets SoftMaxHeapSize using jcmd to the values passed in as arguments, executing