Searched refs:statusfile (Results 1 - 11 of 11) sorted by relevance
/third_party/node/deps/v8/tools/testrunner/local/ |
H A D | statusfile_test.py | 14 from testrunner.local import statusfile namespace 70 variables.update(statusfile.VARIABLES) 73 statusfile._EvalExpression('system==linux and mode==release', 76 statusfile._EvalExpression('system==linux or variant==default', 79 statusfile._EvalExpression('system==linux and mode==debug', variables)) 81 AssertionError, lambda: statusfile._EvalExpression( 84 SyntaxError, lambda: statusfile._EvalExpression( 87 statusfile.VARIANT_EXPRESSION, 88 statusfile._EvalExpression('system==linux and variant==default', 92 rules, prefix_rules = statusfile [all...] |
H A D | verbose.py | 31 from . import statusfile namespace 56 elif t.expected_outcomes == [statusfile.PASS]: 58 elif t.expected_outcomes == [statusfile.FAIL]: 60 elif t.expected_outcomes == [statusfile.CRASH]:
|
H A D | testsuite.py | 36 from . import statusfile namespace 263 self.statusfile = None 287 self.statusfile = statusfile.StatusFile(
|
H A D | testsuite_test.py | 50 self.assertIsNone(self.suite.statusfile) 66 self.assertIsNotNone(self.suite.statusfile)
|
/third_party/node/deps/v8/tools/testrunner/outproc/ |
H A D | base.py | 9 from ..local import statusfile namespace 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 [all...] |
/third_party/node/deps/v8/tools/testrunner/objects/ |
H A D | testcase.py | 35 from testrunner.local import statusfile namespace 129 outcomes = self.suite.statusfile.get_outcomes(self.name, self.variant) 136 if (statusfile.FAIL_SLOPPY in outcomes and 141 if (statusfile.FAIL in outcomes or 142 statusfile.FAIL_OK in outcomes): 143 expected_outcomes.append(statusfile.FAIL) 144 if statusfile.CRASH in outcomes: 145 expected_outcomes.append(statusfile.CRASH) 149 if expected_outcomes and statusfile.PASS in outcomes: 150 expected_outcomes.append(statusfile [all...] |
H A D | predictable.py | 5 from ..local import statusfile namespace
|
/third_party/node/deps/v8/tools/testrunner/local/fake_testsuite/ |
H A D | testcfg.py | 8 from testrunner.local import testsuite, statusfile namespace 20 slow._statusfile_outcomes.append(statusfile.SLOW)
|
/third_party/node/deps/v8/tools/testrunner/testproc/ |
H A D | expectation.py | 7 from testrunner.local import statusfile namespace
|
/third_party/node/deps/v8/tools/ |
H A D | v8_presubmit.py | 45 from testrunner.local import statusfile namespace 657 for key in statusfile.KEYWORDS: 687 success &= statusfile.PresubmitCheck(status_file_path)
|
/third_party/node/deps/v8/tools/unittests/ |
H A D | run_tests_test.py | 449 This also exercises various paths in statusfile logic. 581 from testrunner.local import statusfile namespace 582 self.assertTrue(statusfile.PresubmitCheck(
|
Completed in 5 milliseconds