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.parallel_simple(run_client, machines) |