Home | History | Annotate | Download | only in gtest-parallel

Lines Matching refs:job_id

135   def handle_meta(self, job_id, args):
139 self.tests[job_id] = (binary, test.strip())
143 (binary, test) = self.tests[job_id]
146 self.failures.append(self.tests[job_id])
147 with open(self.outputs[job_id]) as f:
157 def logfile(self, job_id, name):
158 self.outputs[job_id] = name
182 def logfile(self, job_id, name):
183 with open(self.outputs[job_id]) as f:
185 self.log(str(job_id) + '> ' + line.rstrip())
329 job_id = 0
348 def run_job((command, job_id, test)):
361 logger.logfile(job_id, log.name)
363 logger.log("%s: EXIT %s %d" % (job_id, code, runtime_ms))
371 global job_id
375 if job_id < len(tests):
376 (_, test_binary, test, command) = tests[job_id]
377 logger.log(str(job_id) + ': TEST ' + test_binary + ' ' + test)
378 job = (command, job_id, test)
379 job_id += 1