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

Unified Diff: scripts/run_on_remote_slaves.py

Issue 196423010: run_cmd: Fix CommandResults for results from multiple sources (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Add traceback Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « scripts/run_on_all_slaves_on_all_hosts.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/run_on_remote_slaves.py
diff --git a/scripts/run_on_local_slaves.py b/scripts/run_on_remote_slaves.py
old mode 100755
new mode 100644
similarity index 73%
copy from scripts/run_on_local_slaves.py
copy to scripts/run_on_remote_slaves.py
index dd8252952cff3b0b1d84b849e0bf432df032b086..855c15ed2778721184bfc792ebc9f93e0a6e39f9
--- a/scripts/run_on_local_slaves.py
+++ b/scripts/run_on_remote_slaves.py
@@ -11,6 +11,6 @@ import run_cmd
if '__main__' == __name__:
- options = run_cmd.parse_args()
- results = run_cmd.run_on_local_slaves(options.cmd)
+ options = run_cmd.parse_args(positional_args=['host'])
+ results = run_cmd.run_on_remote_slaves(options.host, options.cmd)
results.print_results(pretty=options.pretty)
« no previous file with comments | « scripts/run_on_all_slaves_on_all_hosts.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698