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

Unified Diff: tools/bots/compiler.py

Issue 12386047: Quote all arguments when printing test.py command (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/bots/bot.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/compiler.py
diff --git a/tools/bots/compiler.py b/tools/bots/compiler.py
index 19891e4ecfcdb25fd44a899d156fe4c5383609b9..45636c7e63c7e1dfe017842695d56d739ae4fe29 100644
--- a/tools/bots/compiler.py
+++ b/tools/bots/compiler.py
@@ -149,7 +149,7 @@ def TestStep(name, mode, system, compiler, runtime, targets, flags):
cmd.extend(flags)
cmd.extend(targets)
- print 'running %s' % (' '.join(cmd))
+ print 'Running: %s' % (' '.join(map(lambda arg: '"%s"' % arg, cmd)))
bot.RunProcess(cmd)
« no previous file with comments | « tools/bots/bot.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698