From c901da48e30d53cb8e4e3c1f0584c5f2d3d095f1 Mon Sep 17 00:00:00 2001 From: Kelvin Nilsen Date: Mon, 18 Mar 2024 17:53:37 +0000 Subject: [PATCH] 8327098: GTest needs larger combination limit Reviewed-by: shade, phh --- 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 de859b878d3..6bd2c6608bc 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, ...);