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.*
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
You group the patterns in the form --gtest_filter=POSTIVE_PATTERNS[-NEGATIVE_PATTERNS]
So in this case, you want --gtest_filter=-ABC.*:BCD.*
标签:
googletest