Home | History | Annotate | Download | only in lit

Lines Matching full:jobs

188     def execute_tests(self, display, jobs, max_time=None,
191 execute_tests(display, jobs, [max_time])
193 Execute each of the tests in the run, using up to jobs number of
213 if jobs != 1 and use_processes and multiprocessing:
218 consumer = MultiprocessResultsConsumer(self, display, jobs)
232 provider = TestProvider(self.tests, jobs, queue_impl, canceled_flag)
249 if jobs == 1:
253 self._execute_tests_in_parallel(task_impl, provider, consumer, jobs)
264 def _execute_tests_in_parallel(self, task_impl, provider, consumer, jobs):
268 for i in range(jobs)]