Lines Matching full:machine
34 Used to log information about a machine going into the Repair Failed state.
55 def _find_problem_test(machine, rpc): argument
57 Find the last job that ran on the machine.
63 @param machine: The hostname (e.g. IP address) of the machine to find the
68 @return the job status dictionary for the job that last ran on the machine
80 results = rpc.run('get_host_queue_entries', host__hostname=machine,
89 def flag_problem_test(machine): argument
91 Notify people about the last job that ran on a machine.
93 This method is invoked everytime a machine fails to repair, and attempts
94 to identify the last test that ran on the machine. If successfull, it files
97 @param machine: The hostname (e.g. IP address) of the machine to find the
105 problem_test = _find_problem_test(machine, rpc)
108 % machine)
116 machine=machine)
122 email_prefix = ('The following test is killing a machine, '
128 % (machine, job_id, job_name))