HomeSort by relevance Sort by last modified time
    Searched refs:outcomes (Results 1 - 25 of 42) sorted by null

1 2

  /external/v8/tools/testrunner/local/
statusfile.py 34 # These outcomes can occur in a TestCase's outcomes list:
73 def DoSkip(outcomes):
74 return SKIP in outcomes
77 def IsSlow(outcomes):
78 return SLOW in outcomes
81 def OnlyStandardVariant(outcomes):
82 return NO_VARIANTS in outcomes
85 def OnlyFastVariants(outcomes):
86 return FAST_VARIANTS in outcomes
    [all...]
testsuite_unittest.py 42 self.assertEquals(set(['PASS', 'FAIL', 'SLOW']), suite.tests[0].outcomes)
50 # Contrived outcomes from filtering by variant-independent rules.
51 test1.outcomes = set(['PREV'])
52 test2.outcomes = set(['PREV'])
89 suite.tests[0].outcomes,
93 suite.tests[1].outcomes,
testsuite.py 52 if testcase.outcomes:
53 if statusfile.OnlyStandardVariant(testcase.outcomes):
55 if statusfile.OnlyFastVariants(testcase.outcomes):
60 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes):
88 self.rules = None # dictionary mapping test path to list of outcomes
89 self.wildcards = None # dictionary mapping test paths to list of outcomes
187 t.outcomes = t.outcomes | rules[testname]
188 if statusfile.DoSkip(t.outcomes)
    [all...]
verbose.py 49 if "outcomes" not in dir(t) or not t.outcomes:
52 o = t.outcomes
execution.py 110 # FIXME(machenbach): Make this more OO. Don't expose default outcomes or
112 if statusfile.IsSlow(test.outcomes or [statusfile.PASS]):
203 slow_key = lambda t: statusfile.IsSlow(t.outcomes)
progress.py 339 "marked_slow": statusfile.IsSlow(test.outcomes),
372 "expected": list(test.outcomes or ["PASS"]),
  /external/v8/tools/testrunner/objects/
testcase.py 39 self.outcomes = frozenset([])
48 copy.outcomes = self.outcomes
58 self.override_shell, list(self.outcomes or []),
66 test.outcomes = frozenset(task[5])
  /external/vogar/src/vogar/
ActionFinder.java 29 private final Map<String, Outcome> outcomes; field in class:ActionFinder
31 public ActionFinder(Log log, Map<String, Action> actions, Map<String, Outcome> outcomes) {
34 this.outcomes = outcomes;
65 outcomes.put(actionName, new Outcome(actionName, Result.UNSUPPORTED, e));
XmlReportPrinter.java 88 private Map<String, Suite> testsToSuites(Collection<Outcome> outcomes) {
90 for (Outcome outcome : outcomes) {
102 suite.outcomes.add(outcome);
118 private final List<Outcome> outcomes = new ArrayList<Outcome>(); field in class:XmlReportPrinter.Suite
129 serializer.attribute(ns, XmlReportConstants.ATTR_TESTS, Integer.toString(outcomes.size()));
138 for (Outcome outcome : outcomes) {
Driver.java 55 private final Map<String, Outcome> outcomes = Collections.synchronizedMap( field in class:Driver
89 Outcome outcome = outcomes.get(action.getName());
119 int numFiles = run.reportPrinter.generateReports(outcomes.values());
125 Map<String, AnnotatedOutcome> annotatedOutcomes = run.outcomeStore.read(this.outcomes);
127 run.outcomeStore.write(outcomes);
141 "Outcomes: %s. Passed: %d, Failed: %d, Skipped: %d, Warnings: %d. Took %s.",
145 run.console.info(String.format("Outcomes: %s. All successful. Took %s.",
209 new ActionFinder(run.console, actions, outcomes).findActions(file);
227 outcomes.put(outcome.getName(), outcome);
XmlReportReader.java 71 Collection<Outcome> outcomes = new ArrayList<Outcome>(); local
116 outcomes.add(new Outcome(classname + "#" + name, result, resultOutput, date));
122 return outcomes;
OutcomeStore.java 68 public Map<String, AnnotatedOutcome> read(Map<String, Outcome> outcomes) {
70 for (Map.Entry<String, Outcome> entry : outcomes.entrySet()) {
78 log.verbose("parsing outcomes from " + oldOutcomes.length + " files");
87 log.info("Failed to read outcomes from " + resultsDir, e);
124 public void write(Map<String, Outcome> outcomes) {
136 for (Map.Entry<String, Outcome> entry : outcomes.entrySet()) {
146 log.info("Failed to write outcomes to " + outputFile, e);
ExpectationStore.java 35 * A database of expected outcomes. Entries in this database come in two forms.
52 private final Map<String, Expectation> outcomes = new LinkedHashMap<String, Expectation>(); field in class:ExpectationStore
73 * <p>For outcomes that have both a name match and an output match,
78 Expectation exactNameMatch = outcomes.get(outcome.getName());
95 Expectation expectation = outcomes.get(name);
209 Map<String, Expectation> map = isFailure ? failures : outcomes;
263 = Iterables.concat(outcomes.values(), failures.values());
  /cts/libs/vogar-expect/src/vogar/
ExpectationStore.java 41 * A database of expected outcomes. Entries in this database come in two forms.
66 private final Map<String, Expectation> outcomes = new LinkedHashMap<String, Expectation>(); field in class:ExpectationStore
85 * <p>For outcomes that have both a name match and an output match,
90 Expectation exactNameMatch = outcomes.get(outcome.getName());
107 Expectation expectation = outcomes.get(name);
213 // TODO: Get rid of it and the "failures" map and just use the outcomes
245 Map<String, Expectation> map = isFailure ? failures : outcomes;
276 Iterable<Expectation> allExpectations = Iterables.concat(outcomes.values(), failures.values());
310 return outcomes;
  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
reader_test.go 191 var outcomes []string
193 outcomes = append(outcomes, fmt.Sprintf("%v: %d", k, v))
195 sort.Strings(outcomes)
196 got := strings.Join(outcomes, "\n")
  /prebuilts/go/linux-x86/src/mime/quotedprintable/
reader_test.go 191 var outcomes []string
193 outcomes = append(outcomes, fmt.Sprintf("%v: %d", k, v))
195 sort.Strings(outcomes)
196 got := strings.Join(outcomes, "\n")
  /external/fmtlib/support/
docopt.py 272 outcomes = []
276 outcomes.append(outcome)
277 if outcomes:
278 return min(outcomes, key=lambda outcome: len(outcome[1]))
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
likelyadjust.go 120 certain := make([]int8, f.NumBlocks()) // In the long run, all outcomes are at least this bad. Mainly for Exit
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
likelyadjust.go 120 certain := make([]int8, f.NumBlocks()) // In the long run, all outcomes are at least this bad. Mainly for Exit
  /external/boringssl/src/crypto/bn/asm/
armv8-mont.pl 101 // significant outcomes: it either carries or not. Then
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/
PPC64Ops.go 359 // outcomes: either the three from the signed total order (<,==,>)
386Ops.go 452 // outcomes: the three from the signed total order (<,==,>) and the
ARM64Ops.go 435 // outcomes: the three from the signed total order (<,==,>) and the
ARMOps.go 489 // outcomes: the three from the signed total order (<,==,>) and the
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/
PPC64Ops.go 359 // outcomes: either the three from the signed total order (<,==,>)

Completed in 806 milliseconds

1 2