summaryrefslogtreecommitdiffstats
path: root/tools/checkbins
diff options
context:
space:
mode:
authorscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-04 03:27:41 +0000
committerscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-04 03:27:41 +0000
commit025955ccf0fe7e6a2627d461daa9664a30bba2d0 (patch)
treeb05b3bd0d2544ef323de4be070dd18aab63ee83b /tools/checkbins
parentf8dd43724006ea8b000d1a842e66bc7b1b50d024 (diff)
downloadchromium_src-025955ccf0fe7e6a2627d461daa9664a30bba2d0.zip
chromium_src-025955ccf0fe7e6a2627d461daa9664a30bba2d0.tar.gz
chromium_src-025955ccf0fe7e6a2627d461daa9664a30bba2d0.tar.bz2
Temporarily make checkbins.py print debugging information.
TEST=build bots should start spitting out debug info to stdio BUG=25952 TBR=maruel Review URL: http://codereview.chromium.org/342115 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30932 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/checkbins')
-rwxr-xr-xtools/checkbins/checkbins.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/checkbins/checkbins.py b/tools/checkbins/checkbins.py
index d08e4e5..5d8ce53 100755
--- a/tools/checkbins/checkbins.py
+++ b/tools/checkbins/checkbins.py
@@ -60,8 +60,11 @@ def main(options, args):
if __name__ == '__main__':
usage = "Usage: %prog [options] DIRECTORY"
option_parser = optparse.OptionParser(usage=usage)
+
+ # TODO(scherkus): change the default back to False once I've verified this
+ # tool actually does something on the bots.
option_parser.add_option("-v", "--verbose", action="store_true",
- default=False, help="Print debug logging")
+ default=True, help="Print debug logging")
options, args = option_parser.parse_args()
if not args:
option_parser.print_help()