Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Side by Side Diff: server/control_segments/crashinfo

Issue 6124004: Revert "Merge remote branch 'cros/upstream' into autotest-rebase" (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « server/control_segments/crashdumps ('k') | server/control_segments/install » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 host = hosts.create_host(machine, initialize=False, auto_monitor=False) 5 hostname, user, passwd, port = parse_machine(machine, ssh_user,
6 ssh_port, ssh_pass)
7 host = hosts.create_host(hostname, user=user, port=port, initialize=False,
8 password=passwd, auto_monitor=False)
6 crashcollect.get_crashinfo(host, test_start_time) 9 crashcollect.get_crashinfo(host, test_start_time)
7 10
8 11
9 job.parallel_simple(crashinfo, machines, log=False) 12 job.parallel_simple(crashinfo, machines, log=False)
OLDNEW
« no previous file with comments | « server/control_segments/crashdumps ('k') | server/control_segments/install » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698