Lines Matching refs:output
104 def RemoveStackTraceDetails(output): argument
109 'Stack trace: (omitted)\n\n', output)
112 def RemoveStackTraces(output): argument
116 return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output)
119 def RemoveTime(output): argument
122 return re.sub(r'\(\d+ ms', '(? ms', output)
153 def RemoveTestCounts(output): argument
156 output = re.sub(r'\d+ tests?, listed below',
157 '? tests, listed below', output)
158 output = re.sub(r'\d+ FAILED TESTS',
159 '? FAILED TESTS', output)
160 output = re.sub(r'\d+ tests? from \d+ test cases?',
161 '? tests from ? test cases', output)
162 output = re.sub(r'\d+ tests? from ([a-zA-Z_])',
163 r'? tests from \1', output)
164 return re.sub(r'\d+ tests?\.', '? tests.', output)
190 def NormalizeOutput(output): argument
193 output = ToUnixLineEnding(output)
194 output = RemoveLocations(output)
195 output = RemoveStackTraceDetails(output)
196 output = RemoveTime(output)
197 return output
218 return p.output
279 output = GetOutputOfAllCommands()
293 normalized_actual = RemoveTypeInfoDetails(output)
321 output = GetOutputOfAllCommands() variable
323 golden_file.write(output)