Home
last modified time | relevance | path

Searched refs:statusfile (Results 1 - 11 of 11) sorted by relevance

/third_party/node/deps/v8/tools/testrunner/local/
H A Dstatusfile_test.py14 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 Dverbose.py31 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 Dtestsuite.py36 from . import statusfile namespace
263 self.statusfile = None
287 self.statusfile = statusfile.StatusFile(
H A Dtestsuite_test.py50 self.assertIsNone(self.suite.statusfile)
66 self.assertIsNotNone(self.suite.statusfile)
/third_party/node/deps/v8/tools/testrunner/outproc/
H A Dbase.py9 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 Dtestcase.py35 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 Dpredictable.py5 from ..local import statusfile namespace
/third_party/node/deps/v8/tools/testrunner/local/fake_testsuite/
H A Dtestcfg.py8 from testrunner.local import testsuite, statusfile namespace
20 slow._statusfile_outcomes.append(statusfile.SLOW)
/third_party/node/deps/v8/tools/testrunner/testproc/
H A Dexpectation.py7 from testrunner.local import statusfile namespace
/third_party/node/deps/v8/tools/
H A Dv8_presubmit.py45 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 Drun_tests_test.py449 This also exercises various paths in statusfile logic.
581 from testrunner.local import statusfile namespace
582 self.assertTrue(statusfile.PresubmitCheck(

Completed in 5 milliseconds