mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame^] | 1 | at = autotest.Autotest() |
2 | |||||
3 | def run_client(machine): | ||||
4 | hostname, user, passwd, port = parse_machine( | ||||
5 | machine, ssh_user, ssh_port, ssh_pass) | ||||
6 | |||||
7 | host = hosts.create_host(hostname, user=user, port=port, password=passwd) | ||||
8 | host.log_kernel() | ||||
9 | at.run(control, host=host) | ||||
10 | |||||
11 | job.parallel_simple(run_client, machines) |