Lines Matching refs:test_output
90 def RemoveLocations(test_output): argument
103 return re.sub(r'.*[/\\](.+)(\:\d+|\(\d+\))\: ', r'\1:#: ', test_output)
127 def RemoveTypeInfoDetails(test_output): argument
138 return re.sub(r'unsigned int', 'unsigned', test_output)
155 def RemoveMatchingTests(test_output, pattern): argument
170 test_output = re.sub(
174 test_output)
175 return re.sub(r'.*%s.*\n' % pattern, '', test_output)
247 def RemoveUnsupportedTests(self, test_output): argument
249 test_output = RemoveMatchingTests(test_output, 'DeathTest')
251 test_output = RemoveMatchingTests(test_output, 'TypedTest')
252 test_output = RemoveMatchingTests(test_output, 'TypedDeathTest')
253 test_output = RemoveMatchingTests(test_output, 'TypeParamDeathTest')
255 test_output = RemoveMatchingTests(test_output,
257 test_output = RemoveMatchingTests(test_output,
259 test_output = RemoveMatchingTests(test_output,
262 test_output = RemoveStackTraces(test_output)
264 return test_output