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