Lines Matching refs:self
14 def __init__(self, expected_outcomes, basepath, expected_fail,
16 super(OutProc, self).__init__(expected_outcomes, expected_filename,
18 self._basepath = basepath
19 self._expected_fail = expected_fail
21 def _is_failure_output(self, output):
23 if fail != self._expected_fail:
28 with open(self._basepath + '.out') as f:
34 actual_lines = [ s for s in raw_lines if not self._ignore_line(s) ]
41 base_path = self._basepath + '.js'
43 base_path = self._basepath + '.mjs'
58 def _ignore_line(self, string):