Searched refs:progress_indicator (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/v8/tools/testrunner/local/ |
D | progress.py | 238 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)
|
D | execution.py | 73 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/ |
D | endpoint.py | 111 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()
|
D | network_execution.py | 53 def __init__(self, suites, progress_indicator, context, peers, workspace): argument 63 self._CommonInit(num_tests, progress_indicator, context)
|
/external/chromium_org/v8/tools/ |
D | run-tests.py | 417 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)
|
D | run-deopt-fuzzer.py | 402 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)
|