Home
last modified time | relevance | path

Searched refs:outcome (Results 1 – 25 of 39) sorted by relevance

12

/external/vogar/src/vogar/
DXmlReportPrinter.java90 for (Outcome outcome : outcomes) { in testsToSuites()
91 if (outcome.getResult() == Result.UNSUPPORTED) { in testsToSuites()
95 String suiteName = outcome.getSuiteName(); in testsToSuites()
102 suite.outcomes.add(outcome); in testsToSuites()
104 Expectation expectation = expectationStore.get(outcome); in testsToSuites()
105 if (!expectation.matches(outcome)) { in testsToSuites()
106 if (outcome.getResult() == Result.EXEC_FAILED) { in testsToSuites()
138 for (Outcome outcome : outcomes) { in print()
139 print(serializer, outcome); in print()
145 private void print(KXmlSerializer serializer, Outcome outcome) throws IOException { in print() argument
[all …]
DAnnotatedOutcome.java40 private final Outcome outcome; field in AnnotatedOutcome
44 AnnotatedOutcome(Outcome outcome, Expectation expectation) { in AnnotatedOutcome() argument
46 this.outcome = outcome; in AnnotatedOutcome()
49 public void add(long date, Outcome outcome) { in add() argument
50 previousOutcomes.put(date, outcome); in add()
54 return outcome; in getOutcome()
58 return outcome.getName(); in getName()
62 return outcome.getResultValue(expectation); in getResultValue()
DDriver.java89 Outcome outcome = outcomes.get(action.getName()); in buildAndRun() local
90 if (outcome != null) { in buildAndRun()
91 addEarlyResult(outcome); in buildAndRun()
219 public synchronized void recordOutcome(Outcome outcome) { in recordOutcome() argument
220 outcomes.put(outcome.getName(), outcome); in recordOutcome() local
221 Expectation expectation = run.expectationStore.get(outcome); in recordOutcome()
222 ResultValue resultValue = outcome.getResultValue(expectation); in recordOutcome()
234 Result result = outcome.getResult(); in recordOutcome()
235 run.console.outcome(outcome.getName()); in recordOutcome()
236 run.console.printResult(outcome.getName(), result, resultValue, expectation); in recordOutcome()
[all …]
DExpectation.java119 public boolean matches(Outcome outcome) { in matches() argument
120 return patternMatches(outcome) && (bugIsOpen || result == outcome.getResult()); in matches()
123 private boolean patternMatches(Outcome outcome) { in patternMatches() argument
124 return pattern.matcher(outcome.getOutput()).matches(); in patternMatches()
DJarSuggestions.java40 public void addSuggestionsFromOutcome(Outcome outcome, ClassFileIndex classFileIndex, in addSuggestionsFromOutcome() argument
42 Result result = outcome.getResult(); in addSuggestionsFromOutcome()
46 Set<File> suggestedJars = classFileIndex.suggestClasspaths(outcome.getOutput()); in addSuggestionsFromOutcome()
DOutcome.java160 Outcome outcome = (Outcome) o; in equals() local
161 return outcomeName.equals(outcome.outcomeName) in equals()
162 && result == outcome.result in equals()
163 && output.equals(outcome.output); in equals()
DExpectationStore.java77 public Expectation get(Outcome outcome) { in get() argument
78 Expectation exactNameMatch = outcomes.get(outcome.getName()); in get()
84 if (entry.getValue().matches(outcome)) { in get()
89 Expectation byName = getByNameOrPackage(outcome.getName()); in get()
DOutcomeStore.java71 Outcome outcome = entry.getValue(); in read() local
72 Expectation expectation = expectationStore.get(outcome); in read()
73 result.put(entry.getKey(), new AnnotatedOutcome(outcome, expectation)); in read()
DConsole.java139 public void outcome(String name) {} in outcome() method in Console
455 @Override public synchronized void outcome(String name) { in outcome() method in Console.StreamingConsole
/external/vogar/src/vogar/tasks/
DRunActionTask.java200 run.console.outcome(outcomeName); in output()
204 @Override public void finish(Outcome outcome) { in finish() argument
209 lastFinishedOutcome = toQualifiedOutcomeName(outcome.getName()); in finish()
211 run.driver.recordOutcome(new Outcome(lastFinishedOutcome, outcome.getResult(), in finish()
212 outcome.getOutputLines())); in finish()
/external/v8/tools/testrunner/local/
Dstatusfile.py108 for outcome in item[1:]:
109 assert type(outcome) == str
110 _AddOutcome(result, outcome)
Dprogress.py124 outcome = 'CRASH'
126 outcome = 'FAIL'
128 outcome = 'pass'
129 print 'Done running %s: %s' % (test.GetLabel(), outcome)
Dtestsuite.py208 outcome = self.GetOutcome(testcase)
209 return not outcome in (testcase.outcomes or [statusfile.PASS])
/external/crcalc/src/com/hp/creals/
DUnaryCRFunction.java486 int outcome; in approximate() local
497 outcome = sloppy_compare(f_guess, arg_appr); in approximate()
498 if (outcome != 0) break; in approximate()
544 if (outcome > 0) { in approximate()
/external/valgrind/memcheck/tests/x86/
Dpushfpopf_s.S28 # resulting flag definedness depends on outcome of sub above
/external/vogar/src/vogar/monitor/
DHostMonitor.java162 void finish(Outcome outcome); in finish() argument
/external/v8/test/webkit/
Dtry-try-return-finally-finally-expected.txt24 …ly's with interesting control statements nested within them. The correct outcome is for this test …
Dtry-catch-try-try-catch-try-finally-return-catch-finally-expected.txt24 … that gets inlined inside a complicated catch/finally stack. The correct outcome is for this test …
/external/protobuf/gtest/src/
Dgtest-death-test.cc332 DeathTestOutcome outcome() const { return outcome_; } in outcome() function in testing::internal::DeathTestImpl
457 switch (outcome()) { in Passed()
/external/mesa3d/src/gtest/src/
Dgtest-death-test.cc345 DeathTestOutcome outcome() const { return outcome_; } in outcome() function in testing::internal::DeathTestImpl
500 switch (outcome()) { in Passed()
/external/llvm/utils/unittest/googletest/src/
Dgtest-death-test.cc348 DeathTestOutcome outcome() const { return outcome_; } in outcome() function in testing::internal::DeathTestImpl
503 switch (outcome()) { in Passed()
/external/google-breakpad/src/testing/gtest/src/
Dgtest-death-test.cc383 DeathTestOutcome outcome() const { return outcome_; } in outcome() function in testing::internal::DeathTestImpl
538 switch (outcome()) { in Passed()
/external/gtest/src/
Dgtest-death-test.cc385 DeathTestOutcome outcome() const { return outcome_; } in outcome() function in testing::internal::DeathTestImpl
540 switch (outcome()) { in Passed()
/external/llvm/test/DebugInfo/X86/
Dnodebug_with_debug_loc.ll8 ; since 'f1' is a nodebug function, there's no positive outcome to confirm, just
/external/mesa3d/src/gallium/docs/source/
Dcontext.rst381 A drawing command can be skipped depending on the outcome of a query
389 drawing commands will be predicated on the outcome of the query. If
397 has completed, drawing will be predicated on the outcome of the query.

12