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

Unified Diff: tools/run-tests.py

Issue 1913013003: [test] Print how test runner is called on swarming. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index 3d143ac6adb5cd11869299bca6d6bb2cd4830e94..fb32c28799677d59684053b3556422a061a36c57 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -597,6 +597,11 @@ def Main():
return 1
SetupEnvironment(options)
+ if options.swarming:
+ # Swarming doesn't print how isolated commands are called. Lets make this
+ # less cryptic by printing it ourselves.
+ print ' '.join(sys.argv)
+
exit_code = 0
if not options.no_presubmit:
print ">>> running presubmit tests"
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698