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

Unified Diff: build/android/pylib/utils/findbugs.py

Issue 612883006: [Android] Print out the command used to run findbugs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 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: build/android/pylib/utils/findbugs.py
diff --git a/build/android/pylib/utils/findbugs.py b/build/android/pylib/utils/findbugs.py
index 2f0fff91bb68c40793f92946a470a34de366d17c..d946f319f14043899ab8caac67e46fbef7f2de5d 100644
--- a/build/android/pylib/utils/findbugs.py
+++ b/build/android/pylib/utils/findbugs.py
@@ -144,6 +144,13 @@ def _Run(exclude, known_bugs, classes_to_analyze, auxiliary_classes,
return 1
cmd = '%s %s ' % (cmd, chrome_classes)
+ print
+ print '*' * 80
+ print 'Command used to run findbugs:'
+ print cmd
+ print '*' * 80
+ print
+
proc = subprocess.Popen(shlex.split(cmd),
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, _err = proc.communicate()
« 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