I have a big set of tests. I want to run a subset of these tests. But this subset includes many tests. So, I use a negative pattern. For example:
--gtest_filter=TestSet.*-TestSet.Case1:TestSet.Case2:TestSet.Case3:....:TestSet.CaseN
The result is that length of filter is too long.
Is there anything I can do to solve this problem?