From 1a06a61fda5c3e5657c6c3081d2d0fb6a22eb77b Mon Sep 17 00:00:00 2001 From: Goetz Lindenmaier Date: Wed, 29 Jan 2025 10:37:17 +0000 Subject: [PATCH] 8327098: GTest needs larger combination limit Backport-of: c901da48e30d53cb8e4e3c1f0584c5f2d3d095f1 --- src/hotspot/share/logging/logSelectionList.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotspot/share/logging/logSelectionList.hpp b/src/hotspot/share/logging/logSelectionList.hpp index 398f53ba8d8..bdff767f9da 100644 --- a/src/hotspot/share/logging/logSelectionList.hpp +++ b/src/hotspot/share/logging/logSelectionList.hpp @@ -37,7 +37,7 @@ class LogTagSet; // Consists of ordered LogSelections, i.e. "tag1+tag2=level1,tag3*=level2". class LogSelectionList : public StackObj { public: - static const size_t MaxSelections = 256; + static const size_t MaxSelections = 320; private: friend void LogConfiguration::configure_stdout(LogLevelType, int, ...);