Home | History | Annotate | Download | only in cros

Lines Matching full:host

64         """Test that, for a given host, we get the last job ran on that host."""
66 host = models.Host(hostname='host')
67 host.save()
73 job=old_job, host=host, status='test',
81 job=new_job, host=host, status='test',
92 result = repair_utils._find_problem_test('host', mock_rpc)
98 """Test that we only get a job that is for the given host."""
103 correct_host = models.Host(hostname='correct_host')
106 job=correct_job, host=correct_host, status='test',
113 wrong_host = models.Host(hostname='wrong_host')
116 job=wrong_job, host=wrong_host, status='test',
135 host = models.Host(hostname='host')
136 host.save()
142 job=new_job, host=host, status='test',
154 result = repair_utils._find_problem_test('host', mock_rpc)