Home | History | Annotate | Download | only in bin

Lines Matching refs:job

19             job
20 The job object for this job
23 def __init__(self, job):
25 job
26 The job object for this job
28 self.setup(job)
31 def setup(self, job):
33 job
34 The job object for this job
36 self.job = job
40 """A run within this job is starting"""
45 """A run within this job is completing (expect continue)"""
50 """A run within this job is performing a reboot
57 """A run within this job is aborting. It all went wrong"""
62 """A run within this job is completing (all done)"""
67 """A test run by this job is complete. Note that if multiple
74 """A test within this job is completing"""
80 """A test within this job is completing (detail)"""
84 def select(which, job, harness_args):
93 harness_instance = getattr(harness_module, harness_name)(job, harness_args)