The question is about google-test framework.
I want to run all tests excluding some according to multiple exclusion filters, like:
--gtest_filter=-ABC.*:-BCD.*
标签:
googletest
相关问题
- Google Test - generate values for template class i
- Googletest Parametrized tests crash
- Improving the build times for Google Test test cas
- Add delay to gtest Test Case
- Unit test from google test no longer found after a
相关文章
- How to mock methods return object with deleted cop
- GoogleTest: Accessing the Environment from a Test
- SEH exception with code 0xc0000005 thrown in the t
- find_package does not find GTest which is part of
- How to mock method with optional parameter in Goog
- How to catch an assert with Google test?
- How to compile Google Test using IAR compiler for
- How to pretty-print QString with GoogleTest framew
You group the patterns in the form
--gtest_filter=POSTIVE_PATTERNS[-NEGATIVE_PATTERNS]
So in this case, you want
--gtest_filter=-ABC.*:BCD.*