| at = autotest.Autotest() | |
| def run_client(machine): | |
| hostname, user, passwd, port = parse_machine(machine, ssh_user, ssh_port, | |
| ssh_pass) | |
| host = hosts.create_host(hostname, user=user, port=port, password=passwd) | |
| host.log_kernel() | |
| at.run(control, host=host, job_tag=job.tag) | |
| job.parallel_simple(run_client, machines) |