OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:repeat_each
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
printing.py
103
def print_found(self, num_all_test_files, num_to_run,
repeat_each
, iterations):
105
if
repeat_each
* iterations > 1:
106
found_str += ' (%d times each: --repeat-each=%d --iterations=%d)' % (
repeat_each
* iterations,
repeat_each
, iterations)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
manager.py
235
self._printer.print_found(len(test_names), len(tests_to_run), self._options.
repeat_each
, self._options.iterations)
256
initial_results = self._run_tests(tests_to_run, tests_to_skip, self._options.
repeat_each
, self._options.iterations,
269
retry_results = self._run_tests(tests_to_retry, tests_to_skip=set(),
repeat_each
=1, iterations=1,
321
def _run_tests(self, tests_to_run, tests_to_skip,
repeat_each
, iterations, num_workers, retrying):
326
for _ in xrange(
repeat_each
):
Completed in 48 milliseconds