HomeSort by relevance Sort by last modified time
    Searched refs:Outcome (Results 1 - 5 of 5) sorted by null

  /cts/libs/vogar-expect/src/vogar/
AnnotatedOutcome.java 26 * Contains an outcome for a test, along with some metadata pertaining to the history of this test,
27 * including a list of previous outcomes, an outcome corresponding to the tag Vogar is being run
39 private final Outcome outcome; field in class:AnnotatedOutcome
41 private final SortedMap<Long, Outcome> previousOutcomes;
44 private final Outcome tagOutcome;
47 AnnotatedOutcome(Outcome outcome, Expectation expectation,
48 SortedMap<Long, Outcome> previousOutcomes, String tagName, Outcome tagOutcome
    [all...]
Outcome.java 28 * An outcome of an action. Some actions may have multiple outcomes. For
29 * example, JUnit tests have one outcome for each test method.
31 public final class Outcome {
38 public Outcome(String outcomeName, Result result, List<String> outputLines) {
45 public Outcome(String outcomeName, Result result, String outputLine, Date date) {
52 public Outcome(String outcomeName, Result result, String outputLine) {
59 public Outcome(String outcomeName, Result result, Throwable throwable) {
128 * Returns whether the result indicates that the contents of the Outcome are important.
144 * Returns a filesystem db path for this outcome. For example, a path for an outcome with nam
153 Outcome outcome = (Outcome) o; local
    [all...]
Expectation.java 104 * Returns true if {@code outcome} matches this expectation.
106 public boolean matches(Outcome outcome) {
107 return patternMatches(outcome) && (bugIsOpen || result == outcome.getResult());
110 private boolean patternMatches(Outcome outcome) {
111 return pattern.matcher(outcome.getOutput()).matches();
ExpectationStore.java 41 * <li>Outcome expectations name an outcome (or its prefix, such as
45 * outcome. These expectations are useful for hiding failures caused by
49 * <p>If an outcome matches both an outcome expectation and a failure
50 * expectation, the outcome expectation will be returned.
60 * Finds the expected result for the specified action or outcome name. This
69 * Finds the expected result for the specified outcome after it has
71 * outcome's output.
77 public Expectation get(Outcome outcome)
    [all...]
  /external/v8/tools/
test.py 191 outcome = 'CRASH'
193 outcome = 'FAIL'
195 outcome = 'pass'
196 print 'Done running %s: %s' % (output.test.GetLabel(), outcome)
403 outcome = CRASH
405 outcome = TIMEOUT
407 outcome = FAIL
409 outcome = PASS
410 return not outcome in self.test.outcomes
756 class Outcome(Expression)
    [all...]

Completed in 291 milliseconds