blob: ac840ff6dcd9f4265cc652dc76aaa65a5c018ffe [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()
mblighe7d9c602009-07-02 19:02:33 +00009 at.run(control, host=host, job_tag=job.tag)
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)