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

Unified Diff: scripts/run_on_all_slaves_on_all_hosts.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_cmd.py ('k') | scripts/run_on_remote_slaves.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/run_on_all_slaves_on_all_hosts.py
diff --git a/scripts/run_on_local_slaves.py b/scripts/run_on_all_slaves_on_all_hosts.py
old mode 100755
new mode 100644
similarity index 72%
copy from scripts/run_on_local_slaves.py
copy to scripts/run_on_all_slaves_on_all_hosts.py
index dd8252952cff3b0b1d84b849e0bf432df032b086..780db4dfd90644b9044ee2b1b3470f600add29ef
--- a/scripts/run_on_local_slaves.py
+++ b/scripts/run_on_all_slaves_on_all_hosts.py
@@ -4,7 +4,7 @@
# found in the LICENSE file.
-"""Run a command on all buildslaves on this machine."""
+"""Run a command on all slaves on all host machines."""
import run_cmd
@@ -12,5 +12,5 @@ import run_cmd
if '__main__' == __name__:
options = run_cmd.parse_args()
- results = run_cmd.run_on_local_slaves(options.cmd)
+ results = run_cmd.run_on_all_slaves_on_all_hosts(options.cmd)
results.print_results(pretty=options.pretty)
« no previous file with comments | « scripts/run_cmd.py ('k') | scripts/run_on_remote_slaves.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698