Home
last modified time | relevance | path

Searched refs:outcomes (Results 1 – 21 of 21) sorted by relevance

/external/v8/tools/testrunner/local/
Dstatusfile.py73 def DoSkip(outcomes): argument
74 return SKIP in outcomes
77 def IsSlow(outcomes): argument
78 return SLOW in outcomes
81 def OnlyStandardVariant(outcomes): argument
82 return NO_VARIANTS in outcomes
85 def OnlyFastVariants(outcomes): argument
86 return FAST_VARIANTS in outcomes
89 def IsPassOrFail(outcomes): argument
90 return ((PASS in outcomes) and (FAIL in outcomes) and
[all …]
Dtestsuite.py52 if testcase.outcomes:
53 if statusfile.OnlyStandardVariant(testcase.outcomes):
55 if statusfile.OnlyFastVariants(testcase.outcomes):
60 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes):
187 t.outcomes = t.outcomes | rules[testname]
188 if statusfile.DoSkip(t.outcomes):
190 for outcome in t.outcomes:
193 slow = statusfile.IsSlow(t.outcomes)
194 pass_fail = statusfile.IsPassOrFail(t.outcomes)
200 t.outcomes = t.outcomes | wildcards[rule]
[all …]
Dtestsuite_unittest.py42 self.assertEquals(set(['PASS', 'FAIL', 'SLOW']), suite.tests[0].outcomes)
51 test1.outcomes = set(['PREV'])
52 test2.outcomes = set(['PREV'])
89 suite.tests[0].outcomes,
93 suite.tests[1].outcomes,
Dverbose.py49 if "outcomes" not in dir(t) or not t.outcomes:
52 o = t.outcomes
Dprogress.py339 "marked_slow": statusfile.IsSlow(test.outcomes),
372 "expected": list(test.outcomes or ["PASS"]),
Dexecution.py112 if statusfile.IsSlow(test.outcomes or [statusfile.PASS]):
202 slow_key = lambda t: statusfile.IsSlow(t.outcomes)
/external/vogar/src/vogar/
DActionFinder.java29 private final Map<String, Outcome> outcomes; field in ActionFinder
31 public ActionFinder(Log log, Map<String, Action> actions, Map<String, Outcome> outcomes) { in ActionFinder() argument
34 this.outcomes = outcomes; in ActionFinder()
65 outcomes.put(actionName, new Outcome(actionName, Result.UNSUPPORTED, e)); in findActionsRecursive()
DXmlReportPrinter.java88 private Map<String, Suite> testsToSuites(Collection<Outcome> outcomes) { in testsToSuites() argument
90 for (Outcome outcome : outcomes) { in testsToSuites()
102 suite.outcomes.add(outcome); in testsToSuites()
118 private final List<Outcome> outcomes = new ArrayList<Outcome>(); field in XmlReportPrinter.Suite
129 … serializer.attribute(ns, XmlReportConstants.ATTR_TESTS, Integer.toString(outcomes.size())); in print()
138 for (Outcome outcome : outcomes) { in print()
DDriver.java55 private final Map<String, Outcome> outcomes = Collections.synchronizedMap( field in Driver
89 Outcome outcome = outcomes.get(action.getName()); in buildAndRun()
119 int numFiles = run.reportPrinter.generateReports(outcomes.values()); in buildAndRun()
125 Map<String, AnnotatedOutcome> annotatedOutcomes = run.outcomeStore.read(this.outcomes); in buildAndRun()
127 run.outcomeStore.write(outcomes); in buildAndRun()
204 new ActionFinder(run.console, actions, outcomes).findActions(file); in filesToActions()
222 outcomes.put(outcome.getName(), outcome); in recordOutcome()
DOutcomeStore.java68 public Map<String, AnnotatedOutcome> read(Map<String, Outcome> outcomes) { in read() argument
70 for (Map.Entry<String, Outcome> entry : outcomes.entrySet()) { in read()
124 public void write(Map<String, Outcome> outcomes) { in write() argument
136 for (Map.Entry<String, Outcome> entry : outcomes.entrySet()) { in write()
DExpectationStore.java52 private final Map<String, Expectation> outcomes = new LinkedHashMap<String, Expectation>(); field in ExpectationStore
78 Expectation exactNameMatch = outcomes.get(outcome.getName()); in get()
95 Expectation expectation = outcomes.get(name); in getByNameOrPackage()
209 Map<String, Expectation> map = isFailure ? failures : outcomes; in readExpectation()
263 = Iterables.concat(outcomes.values(), failures.values()); in loadBugStatuses()
DXmlReportReader.java71 Collection<Outcome> outcomes = new ArrayList<Outcome>(); in readTestSuite() local
116 outcomes.add(new Outcome(classname + "#" + name, result, resultOutput, date)); in readTestSuite()
122 return outcomes; in readTestSuite()
/external/v8/tools/testrunner/objects/
Dtestcase.py39 self.outcomes = frozenset([])
48 copy.outcomes = self.outcomes
58 self.override_shell, list(self.outcomes or []),
66 test.outcomes = frozenset(task[5])
/external/ltp/testcases/kernel/controllers/cpuctl/
DREADME57 There are two common major expected outcomes of all the tests:
Dcpuctl_testplan.txt74 The cpu time for each group(task ) is calculated in %. There are two outcomes of the test:
/external/python/cpython3/Doc/library/
Dconfigparser.rst700 and their Boolean outcomes. For example:
/external/conscrypt/benchmark-android/
Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties ...
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/brotli/tests/testdata/
Dlcet10.txt540 participants reflect from the outset upon the sorts of outcomes they
/external/python/cpython2/Misc/
DHISTORY261 side effects from one test to the next affect outcomes. ``DocTestFinder``
/external/python/cpython3/Misc/
DHISTORY17645 side effects from one test to the next affect outcomes. ``DocTestFinder``