Home
last modified time | relevance | path

Searched refs:has_unexpected_output (Results 1 – 6 of 6) sorted by relevance

/external/v8/tools/testrunner/outproc/
Dbase.py21 has_unexpected_output = self.has_unexpected_output(output)
22 return self._create_result(has_unexpected_output, output, reduction)
24 def has_unexpected_output(self, output): member in BaseOutProc
27 def _create_result(self, has_unexpected_output, output, reduction): argument
35 return Result(has_unexpected_output, None)
36 if not has_unexpected_output:
38 return Result(has_unexpected_output, None)
40 return Result(has_unexpected_output, output.without_text())
42 return Result(has_unexpected_output, output)
80 def has_unexpected_output(self, output): member in PassOutProc
/external/v8/tools/testrunner/testproc/
Dresult.py23 def __init__(self, has_unexpected_output, output, cmd=None): argument
24 self.has_unexpected_output = has_unexpected_output
91 super(RerunResult, self).__init__(last.has_unexpected_output, last.output,
Dprogress.py49 if result.has_unexpected_output:
71 if result.has_unexpected_output:
118 if result.has_unexpected_output:
144 if result.has_unexpected_output:
177 if result.has_unexpected_output:
183 if result.has_unexpected_output:
280 if result.has_unexpected_output:
336 if not result.has_unexpected_output and run == 0:
Drerun.py28 if not result.has_unexpected_output:
51 result.has_unexpected_output)
Dfuzzer.py100 if result.has_unexpected_output:
/external/v8/tools/testrunner/objects/
Dpredictable.py31 def has_unexpected_output(self, output): member in OutProc