Lines Matching defs:statusfile
9 from ..local import statusfile
13 OUTCOMES_PASS = [statusfile.PASS]
14 OUTCOMES_FAIL = [statusfile.FAIL]
15 OUTCOMES_TIMEOUT = [statusfile.TIMEOUT]
16 OUTCOMES_PASS_OR_TIMEOUT = [statusfile.PASS, statusfile.TIMEOUT]
17 OUTCOMES_FAIL_OR_TIMEOUT = [statusfile.FAIL, statusfile.TIMEOUT]
18 OUTCOMES_FAIL_OR_PASS = [statusfile.FAIL, statusfile.PASS]
53 return statusfile.CRASH
55 return statusfile.TIMEOUT
57 return statusfile.FAIL
59 return statusfile.PASS
88 return self.get_outcome(output) != statusfile.PASS