Commit 9c6ac85c authored by aurimas's avatar aurimas Committed by Commit bot

[Android] Print out the command used to run findbugs.

Start printing out the command used to run findbugs to allow for easier
debugging why findbugs might be failing.

BUG=None

Review URL: https://codereview.chromium.org/612883006

Cr-Commit-Position: refs/heads/master@{#297463}
parent 6c4c7846
......@@ -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()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment