Home
last modified time | relevance | path

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

/external/chromium_org/v8/tools/testrunner/local/
Dprogress.py238 def __init__(self, progress_indicator, junitout, junittestsuite): argument
239 self.progress_indicator = progress_indicator
247 self.progress_indicator.runner = self.runner
248 self.progress_indicator.Starting()
251 self.progress_indicator.Done()
257 self.progress_indicator.AboutToRun(test)
260 self.progress_indicator.HasRun(test, has_unexpected_output)
Dexecution.py73 def __init__(self, suites, progress_indicator, context): argument
75 self._CommonInit(len(self.tests), progress_indicator, context)
77 def _CommonInit(self, num_tests, progress_indicator, context): argument
78 self.indicator = progress_indicator
79 progress_indicator.runner = self
/external/chromium_org/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
63 self._CommonInit(num_tests, progress_indicator, context)
/external/chromium_org/v8/tools/
Drun-tests.py417 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]()
419 progress_indicator = progress.JUnitTestProgressIndicator(
420 progress_indicator, options.junitout, options.junittestsuite)
442 runner = network_execution.NetworkedRunner(suites, progress_indicator,
445 runner = execution.Runner(suites, progress_indicator, ctx)
Drun-deopt-fuzzer.py402 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]()
403 runner = execution.Runner(suites, progress_indicator, ctx)
455 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]()
456 runner = execution.Runner(suites, progress_indicator, ctx)