Searched refs:outcome (Results 1 - 25 of 46) sorted by relevance

12

/external/vogar/src/vogar/
H A DAnnotatedOutcome.java27 * Contains an outcome for a test, along with some metadata pertaining to the history of this test,
28 * including a list of previous outcomes, an outcome corresponding to the tag Vogar is being run
40 private final Outcome outcome; field in class:AnnotatedOutcome
44 AnnotatedOutcome(Outcome outcome, Expectation expectation) { argument
46 this.outcome = outcome;
49 public void add(long date, Outcome outcome) { argument
50 previousOutcomes.put(date, outcome);
54 return outcome;
58 return outcome
[all...]
H A DExpectation.java117 * Returns true if {@code outcome} matches this expectation.
119 public boolean matches(Outcome outcome) { argument
120 return patternMatches(outcome) && (bugIsOpen || result == outcome.getResult());
123 private boolean patternMatches(Outcome outcome) { argument
124 return pattern.matcher(outcome.getOutput()).matches();
H A DXmlReportPrinter.java90 for (Outcome outcome : outcomes) {
91 if (outcome.getResult() == Result.UNSUPPORTED) {
95 String suiteName = outcome.getSuiteName();
102 suite.outcomes.add(outcome);
104 Expectation expectation = expectationStore.get(outcome);
105 if (!expectation.matches(outcome)) {
106 if (outcome.getResult() == Result.EXEC_FAILED) {
138 for (Outcome outcome : outcomes) {
139 print(serializer, outcome);
145 private void print(KXmlSerializer serializer, Outcome outcome) throw argument
[all...]
H A DJarSuggestions.java40 public void addSuggestionsFromOutcome(Outcome outcome, ClassFileIndex classFileIndex, argument
42 Result result = outcome.getResult();
46 Set<File> suggestedJars = classFileIndex.suggestClasspaths(outcome.getOutput());
H A DDriver.java89 Outcome outcome = outcomes.get(action.getName());
90 if (outcome != null) {
91 addEarlyResult(outcome);
226 public synchronized void recordOutcome(Outcome outcome) { argument
227 outcomes.put(outcome.getName(), outcome);
228 Expectation expectation = run.expectationStore.get(outcome);
229 ResultValue resultValue = outcome.getResultValue(expectation);
241 Result result = outcome.getResult();
242 run.console.outcome(outcom
[all...]
H A DOutcome.java28 * An outcome of an action. Some actions may have multiple outcomes. For
29 * example, JUnit tests have one outcome for each test method.
151 * Returns a filesystem db path for this outcome. For example, a path for an outcome with name
160 Outcome outcome = (Outcome) o;
161 return outcomeName.equals(outcome.outcomeName)
162 && result == outcome.result
163 && output.equals(outcome.output);
H A DExpectationStore.java37 * <li>Outcome expectations name an outcome (or its prefix, such as
41 * outcome. These expectations are useful for hiding failures caused by
45 * <p>If an outcome matches both an outcome expectation and a failure
46 * 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) { argument
78 Expectation exactNameMatch = outcomes.get(outcome
[all...]
H A DOutcomeStore.java71 Outcome outcome = entry.getValue();
72 Expectation expectation = expectationStore.get(outcome);
73 result.put(entry.getKey(), new AnnotatedOutcome(outcome, expectation));
H A DConsole.java137 * Begins streaming output for the named outcome.
139 public void outcome(String name) {} method in class:Console
144 * printed only if the outcome is unsuccessful.
154 * Writes the action's outcome.
197 // figure out whether each outcome is noteworthy, and add a message to the appropriate list
400 * The line contains the name of an action or outcome. The outcome's
453 * Prints the beginning of the named outcome.
455 @Override public synchronized void outcome(String name) { method in class:Console.StreamingConsole
456 // if the outcome an
[all...]
/external/chromium-trace/catapult/experimental/statistical_analysis/
H A Dcompare_benchmark_results.py38 def PrintOutcomeLine(name, max_name_length, outcome, print_p_value):
40 print('{:{}}{}'.format(name, max_name_length + 2, outcome[0]), end='')
42 print('\t{:.10f}'.format(outcome[1]), end='')
50 Will print the p-values for each metric's outcome if |print_p_value| is True
61 for metric_name, outcome in test_outcome_dict.iteritems():
62 PrintOutcomeLine(metric_name, max_metric_name_len, outcome, print_p_value)
83 outcome = (combined_p_value < significance_level, combined_p_value)
84 PrintOutcomeLine(metric_name, max_metric_name_len, outcome, print_p_value)
90 # Print outcome for every metric/page combination.
/external/vogar/src/vogar/tasks/
H A DRunActionTask.java74 * outcome that wasn't completed.
136 * @param skipPast the last outcome to skip, or null to run all outcomes.
200 run.console.outcome(outcomeName);
204 @Override public void finish(Outcome outcome) { argument
209 lastFinishedOutcome = toQualifiedOutcomeName(outcome.getName());
211 run.driver.recordOutcome(new Outcome(lastFinishedOutcome, outcome.getResult(),
212 outcome.getOutputLines()));
217 * outcome names like "Clear" rather than "com.foo.Bar.Clear". In that
218 * case, just replace the outcome name with the action name.
/external/v8/tools/testrunner/local/
H A Dstatusfile.py118 for outcome in item[1:]:
119 assert type(outcome) == str
120 _AddOutcome(result, outcome)
H A Dtestsuite.py186 for outcome in t.outcomes:
187 if outcome.startswith('Flags: '):
188 t.flags += outcome[7:].split()
282 outcome = self.GetOutcome(testcase)
283 return not outcome in (testcase.outcomes or [statusfile.PASS])
H A Dprogress.py150 outcome = 'CRASH'
152 outcome = 'FAIL'
154 outcome = 'pass'
155 print 'Done running %s: %s' % (test.GetLabel(), outcome)
/external/valgrind/memcheck/tests/x86/
H A Dpushfpopf_s.S28 # resulting flag definedness depends on outcome of sub above
/external/v8/src/compiler/
H A Doperation-typer.cc384 ComparisonOutcome outcome) {
386 if ((outcome & kComparisonUndefined) != 0) result |= kComparisonUndefined;
387 if ((outcome & kComparisonTrue) != 0) result |= kComparisonFalse;
388 if ((outcome & kComparisonFalse) != 0) result |= kComparisonTrue;
392 Type* OperationTyper::FalsifyUndefined(ComparisonOutcome outcome) { argument
393 if ((outcome & kComparisonFalse) != 0 ||
394 (outcome & kComparisonUndefined) != 0) {
395 return (outcome & kComparisonTrue) != 0 ? Type::Boolean()
399 DCHECK((outcome & kComparisonTrue) != 0);
383 Invert( ComparisonOutcome outcome) argument
H A Dtyper.cc361 ComparisonOutcome outcome, Typer* t) {
363 if ((outcome & kComparisonUndefined) != 0) result |= kComparisonUndefined;
364 if ((outcome & kComparisonTrue) != 0) result |= kComparisonFalse;
365 if ((outcome & kComparisonFalse) != 0) result |= kComparisonTrue;
370 Type* Typer::Visitor::FalsifyUndefined(ComparisonOutcome outcome, Typer* t) { argument
371 if ((outcome & kComparisonFalse) != 0 ||
372 (outcome & kComparisonUndefined) != 0) {
373 return (outcome & kComparisonTrue) != 0 ? Type::Boolean()
377 DCHECK((outcome & kComparisonTrue) != 0);
360 Invert( ComparisonOutcome outcome, Typer* t) argument
/external/v8/test/test262/
H A Dtestcfg.py202 outcome = self.GetOutcome(testcase)
205 return outcome != statusfile.FAIL
206 return not outcome in (testcase.outcomes or [statusfile.PASS])
/external/webrtc/webrtc/test/
H A Dfake_network_pipe.cc35 int outcome = rand() % 100; local
36 return outcome < loss_percent;
/external/crcalc/src/com/hp/creals/
H A DUnaryCRFunction.java486 int outcome;
497 outcome = sloppy_compare(f_guess, arg_appr);
498 if (outcome != 0) break;
544 if (outcome > 0) {
/external/vogar/src/vogar/monitor/
H A DHostMonitor.java102 * {"outcome"="java.util.FormatterMain"}
104 * {"outcome"="java.util.FormatterTest#testBar" runner="vogar.target.junit.JUnitRunner"}
125 if (jsonObject.get("outcome") != null) {
126 currentOutcome = jsonObject.get("outcome").getAsString();
160 * Receive a completed outcome.
162 void finish(Outcome outcome); argument
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc332 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl
429 // outcome: An enumeration describing how the death test
457 switch (outcome()) {
513 // 5. The parent reads child's output through the pipe (outcome code and
550 // outcome data member.
714 // outcome data member.
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-death-test.cc383 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl
510 // outcome: An enumeration describing how the death test
538 switch (outcome()) {
599 // 5. The parent reads child's output through the pipe (outcome code and
636 // outcome data member.
800 // outcome data member.
/external/gtest/src/
H A Dgtest-death-test.cc385 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl
512 // outcome: An enumeration describing how the death test
540 switch (outcome()) {
601 // 5. The parent reads child's output through the pipe (outcome code and
638 // outcome data member.
798 // outcome data member.
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-death-test.cc348 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl
475 // outcome: An enumeration describing how the death test
503 switch (outcome()) {
563 // 5. The parent reads child's output through the pipe (outcome code and
600 // outcome data member.
764 // outcome data member.

Completed in 554 milliseconds

12