blob: f8acae3d2c3023aebd3378900804f865075308bd [file] [log] [blame]
mbligh084bc172008-10-18 14:02:45 +00001at = autotest.Autotest()
2
mbligh084bc172008-10-18 14:02:45 +00003
mbligh54931292008-11-23 14:35:51 +00004def run_client(machine):
5 hostname, user, passwd, port = parse_machine(machine, ssh_user, ssh_port,
6 ssh_pass)
mbligh084bc172008-10-18 14:02:45 +00007 host = hosts.create_host(hostname, user=user, port=port, password=passwd)
8 host.log_kernel()
mbligh9de6ed72010-01-11 19:01:10 +00009 at.run(control, host=host)
mbligh084bc172008-10-18 14:02:45 +000010
mbligh54931292008-11-23 14:35:51 +000011
mbligh084bc172008-10-18 14:02:45 +000012job.parallel_simple(run_client, machines)