Home
last modified time | relevance | path

Searched refs:progress_indicator (Results 1 – 6 of 6) sorted by relevance

/external/v8/tools/testrunner/local/
Dprogress.py244 def __init__(self, progress_indicator, junitout, junittestsuite): argument
245 self.progress_indicator = progress_indicator
253 self.progress_indicator.runner = self.runner
254 self.progress_indicator.Starting()
257 self.progress_indicator.Done()
263 self.progress_indicator.AboutToRun(test)
266 self.progress_indicator.HasRun(test, has_unexpected_output)
288 def __init__(self, progress_indicator, json_test_results, arch, mode): argument
289 self.progress_indicator = progress_indicator
296 self.progress_indicator.runner = self.runner
[all …]
Dexecution.py63 def __init__(self, suites, progress_indicator, context): argument
74 self._CommonInit(len(self.tests), progress_indicator, context)
76 def _CommonInit(self, num_tests, progress_indicator, context): argument
77 self.indicator = progress_indicator
78 progress_indicator.runner = self
/external/v8/tools/testrunner/network/
Dendpoint.py111 progress_indicator = EndpointProgress(sock, server, ctx)
112 runner = execution.Runner(suites, progress_indicator, ctx)
122 progress_indicator.HasRun(None, None) # Sentinel to signal the end.
123 progress_indicator.sender_lock.acquire() # Released when sending is done.
124 progress_indicator.sender_lock.release()
Dnetwork_execution.py53 def __init__(self, suites, progress_indicator, context, peers, workspace): argument
65 self._CommonInit(num_tests, progress_indicator, context)
/external/v8/tools/
Drun-tests.py544 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]()
546 progress_indicator = progress.JUnitTestProgressIndicator(
547 progress_indicator, options.junitout, options.junittestsuite)
549 progress_indicator = progress.JsonTestProgressIndicator(
550 progress_indicator, options.json_test_results, arch, mode)
572 runner = network_execution.NetworkedRunner(suites, progress_indicator,
575 runner = execution.Runner(suites, progress_indicator, ctx)
Drun-deopt-fuzzer.py421 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]()
422 runner = execution.Runner(suites, progress_indicator, ctx)
468 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]()
469 runner = execution.Runner(suites, progress_indicator, ctx)