blob: 40755e2aeced31093fcf5d05e3814d05e4f571c5 [file] [log] [blame]
mbligh084bc172008-10-18 14:02:45 +00001at = autotest.Autotest()
2
3def 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
11job.parallel_simple(run_client, machines)