OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:run_results
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
layout_test_runner_unittest.py
51
def print_expected(self,
run_results
, get_tests_with_result_type):
116
run_results
= TestRunResults(TestExpectations(runner._port, test_names), len(test_names))
117
run_results
.unexpected_failures = 100
118
run_results
.unexpected_crashes = 50
119
run_results
.unexpected_timeouts = 50
121
runner._interrupt_if_at_failure_limits(
run_results
)
126
runner._interrupt_if_at_failure_limits(
run_results
)
130
self.assertRaises(TestRunInterruptedException, runner._interrupt_if_at_failure_limits,
run_results
)
131
self.assertEqual(
run_results
.results_by_name['passes/text.html'].type, test_expectations.SKIP)
132
self.assertEqual(
run_results
.results_by_name['passes/image.html'].type, test_expectations.SKIP
[
all
...]
layout_test_runner.py
86
run_results
= TestRunResults(self._expectations, len(test_inputs) + len(tests_to_skip))
87
self._current_run_results =
run_results
92
self._printer.print_expected(
run_results
, self._expectations.get_tests_with_result_type)
97
run_results
.add(result, expected=True, test_is_slow=self._test_is_slow(test_name))
110
return
run_results
126
run_results
.interrupted = True
130
run_results
.keyboard_interrupted = True
135
run_results
.run_time = time.time() - start_time
137
return
run_results
146
def _mark_interrupted_tests_as_skipped(self,
run_results
)
[
all
...]
manager_unittest.py
118
run_results
= TestRunResults(expectations, len(tests))
120
manager._look_for_new_crash_logs(
run_results
, time.time())
manager.py
318
def _look_for_new_crash_logs(self,
run_results
, start_time):
322
run_results
: the results of the test run
327
for test, result in
run_results
.unexpected_results_by_name.iteritems():
362
def _tests_to_retry(self,
run_results
):
363
return [result.test_name for result in
run_results
.unexpected_results_by_name.values() if result.type != test_expectations.PASS]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
printing.py
109
def print_expected(self,
run_results
, tests_with_result_type_callback):
110
self._print_expected_results_of_type(
run_results
, test_expectations.PASS, "passes", tests_with_result_type_callback)
111
self._print_expected_results_of_type(
run_results
, test_expectations.FAIL, "failures", tests_with_result_type_callback)
112
self._print_expected_results_of_type(
run_results
, test_expectations.FLAKY, "flaky", tests_with_result_type_callback)
125
def _print_expected_results_of_type(self,
run_results
, result_type, result_type_str, tests_with_result_type_callback):
127
now =
run_results
.tests_by_timeline[test_expectations.NOW]
128
wontfix =
run_results
.tests_by_timeline[test_expectations.WONTFIX]
142
def print_results(self, run_time,
run_results
, summarized_results):
143
self._print_timing_statistics(run_time,
run_results
)
144
self._print_one_line_summary(run_time,
run_results
)
[
all
...]
buildbot_results.py
57
def print_run_results(self,
run_results
):
58
failed =
run_results
.total_failures
59
total =
run_results
.total
60
passed = total - failed -
run_results
.remaining
67
self._print_run_results_entry(
run_results
, test_expectations.NOW, "Tests to be fixed")
71
self._print_run_results_entry(
run_results
, test_expectations.WONTFIX,
75
def _print_run_results_entry(self,
run_results
, timeline, heading):
76
total = len(
run_results
.tests_by_timeline[timeline])
78
len(
run_results
.tests_by_expectation[test_expectations.PASS] &
79
run_results
.tests_by_timeline[timeline])
[
all
...]
printing_unittest.py
151
run_results
= FakeRunResults()
152
run_results
.results_by_name = {
158
printer._print_directory_timings(
run_results
)
164
run_results
.results_by_name = {
169
printer._print_directory_timings(
run_results
)
buildbot_results_unittest.py
97
initial_results = test_run_results_unittest.
run_results
(port)
/external/chromium_org/build/android/pylib/base/
test_dispatcher.py
242
run_results
= base_test_result.TestRunResults()
265
len(
run_results
.GetAll()))
268
run_results
.AddTestRunResults(r)
269
if not
run_results
.DidRunPass():
271
return (
run_results
, exit_code)
test_dispatcher_unittest.py
89
run_results
= base_test_result.TestRunResults()
91
run_results
.AddTestRunResults(r)
92
return
run_results
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_run_results_unittest.py
49
def
run_results
(port, extra_skipped_tests=[]):
function
61
initial_results =
run_results
(port, extra_skipped_tests)
86
retry_results =
run_results
(port, extra_skipped_tests)
Completed in 74 milliseconds