| OLD | NEW | 
|   1 at = autotest.Autotest() |   1 at = autotest.Autotest() | 
|   2  |   2  | 
|   3  |   3  | 
|   4 def run_client(machine): |   4 def run_client(machine): | 
|   5     host = hosts.create_host(machine) |   5     hostname, user, passwd, port = parse_machine(machine, ssh_user, ssh_port, | 
 |   6                                                  ssh_pass) | 
 |   7     host = hosts.create_host(hostname, user=user, port=port, password=passwd) | 
|   6     host.log_kernel() |   8     host.log_kernel() | 
|   7     at.run(control, host=host) |   9     at.run(control, host=host) | 
|   8  |  10  | 
|   9  |  11  | 
|  10 job.parallel_simple(run_client, machines) |  12 job.parallel_simple(run_client, machines) | 
| OLD | NEW |