8327098: GTest needs larger combination limit

Reviewed-by: shade, phh
This commit is contained in:
Kelvin Nilsen 2024-03-18 17:53:37 +00:00 committed by Y. Srinivas Ramakrishna
parent 9e32db266e
commit c901da48e3

View File

@ -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, ...);