OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:test_run_time
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_results.py
41
def __init__(self, test_name, failures=None,
test_run_time
=None, has_stderr=False, reftest_type=None, pid=None, references=None, device_failed=False, has_repaint_overlay=False):
44
self.
test_run_time
=
test_run_time
or 0 # The time taken to execute the test itself.
64
self.
test_run_time
== other.
test_run_time
)
test_results_unittest.py
39
self.assertEqual(result.
test_run_time
, 0)
44
test_run_time
=1.1)
test_run_results.py
248
rounded_run_time = round(result.
test_run_time
, 1)
test_run_results_unittest.py
48
return test_results.TestResult(test_name, failures=failures,
test_run_time
=run_time)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
json_results_generator.py
107
add_path_to_trie(test, int(1000 * test_result.
test_run_time
), trie)
122
self.
test_run_time
= elapsed_time
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
printing.py
173
times_for_dump_render_tree = [result.
test_run_time
for result in run_results.results_by_name.values()]
179
individual_test_timings = sorted(run_results.results_by_name.values(), key=lambda result: result.
test_run_time
, reverse=True)
219
test_run_time
= round(test_tuple.
test_run_time
, 1)
220
self._print_debug(" %s took %s seconds" % (test_tuple.test_name,
test_run_time
))
355
self._options.timing, result.
test_run_time
)
374
def _result_message(self, result_type, failures, expected, timing,
test_run_time
):
376
timing_string = ' %.4fs' %
test_run_time
if timing else ''
402
self._print_default(' took: %-.3f' % result.
test_run_time
)
printing_unittest.py
115
return test_results.TestResult(test_name, failures=failures,
test_run_time
=run_time)
/external/chromium_org/build/android/pylib/utils/
json_results_generator.py
89
AddPathToTrie(test, int(1000 * test_result.
test_run_time
), trie)
103
self.
test_run_time
= elapsed_time
313
return int(self._test_results_map[test_name].
test_run_time
)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
single_test_runner.py
380
total_test_time += test_result.
test_run_time
388
return TestResult(self._test_name, test_result.failures, total_test_time + test_result.
test_run_time
,
manager.py
497
stats[result.test_name] = {'results': (_worker_number(result.worker_name), result.test_number, result.pid, int(result.
test_run_time
* 1000), int(result.total_run_time * 1000))}
Completed in 106 milliseconds