jadmanski | 96b7807 | 2009-05-21 22:21:04 +0000 | [diff] [blame^] | 1 | from autotest_lib.server import crashcollect |
| 2 | |
| 3 | |
mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame] | 4 | def crashinfo(machine): |
| 5 | hostname, user, passwd, port = parse_machine(machine, ssh_user, |
| 6 | ssh_port, ssh_pass) |
mbligh | 5493129 | 2008-11-23 14:35:51 +0000 | [diff] [blame] | 7 | host = hosts.create_host(hostname, user=user, port=port, initialize=False, |
| 8 | password=passwd, auto_monitor=False) |
jadmanski | 96b7807 | 2009-05-21 22:21:04 +0000 | [diff] [blame^] | 9 | crashcollect.get_crashinfo(host, test_start_time) |
mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame] | 10 | |
mbligh | 5493129 | 2008-11-23 14:35:51 +0000 | [diff] [blame] | 11 | |
mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame] | 12 | job.parallel_simple(crashinfo, machines, log=False) |