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

Side by Side Diff: server/control_segments/client_wrapper

Issue 6246035: Merge remote branch 'cros/upstream' into master (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 10 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
OLDNEW
1 at = autotest.Autotest() 1 at = autotest.Autotest()
2 2
3 3
4 def run_client(machine): 4 def run_client(machine):
5 hostname, user, passwd, port = parse_machine(machine, ssh_user, ssh_port, 5 host = hosts.create_host(machine)
6 ssh_pass)
7 host = hosts.create_host(hostname, user=user, port=port, password=passwd)
8 host.log_kernel() 6 host.log_kernel()
9 at.run(control, host=host) 7 at.run(control, host=host)
10 8
11 9
12 job.parallel_simple(run_client, machines) 10 job.parallel_simple(run_client, machines)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698