From 7497e1855dc41834fee585fcdaaa74b08f132198 Mon Sep 17 00:00:00 2001 From: Thomas Schatzl Date: Fri, 14 Nov 2025 12:58:06 +0100 Subject: [PATCH] 8371895 Hi all, please review this fix to the `TestUseGCOverheadLimit` test to ease the CPU overhead requirement a bit further since it seems too high for some particularly loaded machines. Testing: gha, reporter Thanks, Thomas --- test/hotspot/jtreg/gc/TestUseGCOverheadLimit.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/hotspot/jtreg/gc/TestUseGCOverheadLimit.java b/test/hotspot/jtreg/gc/TestUseGCOverheadLimit.java index bc4c6bd62782f..dcc501c7710a7 100644 --- a/test/hotspot/jtreg/gc/TestUseGCOverheadLimit.java +++ b/test/hotspot/jtreg/gc/TestUseGCOverheadLimit.java @@ -67,7 +67,7 @@ public static void main(String args[]) throws Exception { "-XX:ParallelGCThreads=1", // Make GCs take longer. "-XX:+UseGCOverheadLimit", "-Xlog:gc=debug", - "-XX:GCTimeLimit=90", // Ease the CPU requirement a little. + "-XX:GCTimeLimit=80", // Ease the CPU requirement. "-Xmx128m", Allocating.class.getName() };