Home | History | Annotate | Download | only in common

Lines Matching full:gtest_filter

94 def FilterTestSuite(suite, gtest_filter):
98 for gtest_filter specification.
100 return unittest.TestSuite(FilterTests(GetTestsFromSuite(suite), gtest_filter))
103 def FilterTests(all_tests, gtest_filter):
108 gtest_filter: Filter to apply.
114 filtered_names = FilterTestNames(test_names, gtest_filter)
118 def FilterTestNames(all_tests, gtest_filter):
122 for gtest_filter specification.
126 gtest_filter: Filter to apply.
131 pattern_groups = gtest_filter.split('-')