OLD | NEW |
1 from autotest_lib.server import crashcollect | 1 from autotest_lib.server import crashcollect |
2 | 2 |
3 | 3 |
4 def crashinfo(machine): | 4 def crashinfo(machine): |
5 hostname, user, passwd, port = parse_machine(machine, ssh_user, | 5 host = hosts.create_host(machine, initialize=False, auto_monitor=False) |
6 ssh_port, ssh_pass) | |
7 host = hosts.create_host(hostname, user=user, port=port, initialize=False, | |
8 password=passwd, auto_monitor=False) | |
9 crashcollect.get_crashinfo(host, test_start_time) | 6 crashcollect.get_crashinfo(host, test_start_time) |
10 | 7 |
11 | 8 |
12 job.parallel_simple(crashinfo, machines, log=False) | 9 job.parallel_simple(crashinfo, machines, log=False) |
OLD | NEW |