From 0dc917af08617a26c0a1d476f23834b5f6a4e91d Mon Sep 17 00:00:00 2001 From: david-sarah Date: Sun, 24 Jul 2011 09:25:30 -0700 Subject: [PATCH] Correct the information printed by '/usr/bin/tahoe debug --help' on Debian/Ubuntu. fixes #1441 --- src/allmydata/scripts/debug.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/allmydata/scripts/debug.py b/src/allmydata/scripts/debug.py index a046578b..a943507b 100644 --- a/src/allmydata/scripts/debug.py +++ b/src/allmydata/scripts/debug.py @@ -846,7 +846,18 @@ Subcommands: Please run e.g. 'tahoe debug dump-share --help' for more details on each subcommand. - +""" + # See ticket #1441 for why we print different information when + # run via /usr/bin/tahoe. Note that argv[0] is the full path. + if sys.argv[0] == '/usr/bin/tahoe': + t += """ +To get branch coverage for the Tahoe test suite (on the installed copy of +Tahoe), install the 'python-coverage' package and then use: + + python-coverage run --branch /usr/bin/tahoe debug trial +""" + else: + t += """ Another debugging feature is that bin%stahoe allows executing an arbitrary "runner" command (typically an installed Python script, such as 'coverage'), with the Tahoe libraries on the PYTHONPATH. The runner command name is -- 2.37.2