/external/v8/tools/testrunner/local/ |
D | statusfile.py | 66 def DoSkip(outcomes): argument 67 return SKIP in outcomes 70 def IsSlow(outcomes): argument 71 return SLOW in outcomes 74 def OnlyStandardVariant(outcomes): argument 75 return NO_VARIANTS in outcomes 78 def OnlyFastVariants(outcomes): argument 79 return FAST_VARIANTS in outcomes 82 def IsFlaky(outcomes): argument 83 return FLAKY in outcomes [all …]
|
D | testsuite.py | 74 if testcase.outcomes and statusfile.OnlyStandardVariant( 75 testcase.outcomes): 77 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes): 82 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes): 190 t.outcomes = self.rules[testname] 191 if statusfile.DoSkip(t.outcomes): 193 for outcome in t.outcomes: 196 flaky = statusfile.IsFlaky(t.outcomes) 197 slow = statusfile.IsSlow(t.outcomes) 198 pass_fail = statusfile.IsPassOrFail(t.outcomes) [all …]
|
D | verbose.py | 49 if "outcomes" not in dir(t) or not t.outcomes: 52 o = t.outcomes
|
D | execution.py | 111 if statusfile.IsSlow(test.outcomes or [statusfile.PASS]): 178 slow_key = lambda t: statusfile.IsSlow(t.outcomes)
|
D | progress.py | 371 "expected": list(test.outcomes or ["PASS"]),
|
/external/v8/tools/testrunner/objects/ |
D | testcase.py | 39 self.outcomes = set([]) 48 copy.outcomes = self.outcomes 58 self.dependency, list(self.outcomes or []), self.id] 65 test.outcomes = set(task[5])
|
/external/vogar/src/vogar/ |
D | ActionFinder.java | 29 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()
|
D | XmlReportPrinter.java | 88 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()
|
D | Driver.java | 55 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() 209 new ActionFinder(run.console, actions, outcomes).findActions(file); in filesToActions() 227 outcomes.put(outcome.getName(), outcome); in recordOutcome()
|
D | OutcomeStore.java | 68 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()
|
D | ExpectationStore.java | 52 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()
|
D | XmlReportReader.java | 71 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/test/test262/ |
D | testcfg.py | 84 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes): 182 if (statusfile.FAIL_SLOPPY in testcase.outcomes and 185 return not outcome in (testcase.outcomes or [statusfile.PASS])
|
/external/v8/test/benchmarks/ |
D | testcfg.py | 42 if testcase.outcomes and statusfile.OnlyStandardVariant( 43 testcase.outcomes):
|