aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_runner.py
diff options
context:
space:
mode:
authorMartin Erlandsson <merland@users.noreply.github.com>2018-10-31 14:39:25 +0100
committerMartin Erlandsson <merland@users.noreply.github.com>2018-11-06 07:54:52 +0100
commit5a05aa2db20324892be5e2a54181d106a7bfda46 (patch)
treecf338ef1d73fa5972d9a4984767b87f889cea943 /test/functional/test_runner.py
parent29f429dc7d4c7e6cd012e749cadf89e3138bcab3 (diff)
downloadbitcoin-5a05aa2db20324892be5e2a54181d106a7bfda46.tar.xz
Add metavar to match var name in help text + Change wording for better readability
Diffstat (limited to 'test/functional/test_runner.py')
-rwxr-xr-xtest/functional/test_runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py
index 620554ffe4..3ec46c76ac 100755
--- a/test/functional/test_runner.py
+++ b/test/functional/test_runner.py
@@ -214,7 +214,7 @@ def main():
epilog='''
Help text and arguments for individual test script:''',
formatter_class=argparse.RawTextHelpFormatter)
- parser.add_argument('--combinedlogslen', '-c', type=int, default=0, help='print a combined log (of length n lines) from all test nodes and test framework to the console on failure.')
+ parser.add_argument('--combinedlogslen', '-c', type=int, default=0, metavar='n', help='On failure, print a log (of length n lines) to the console, combined from the test framework and all test nodes.')
parser.add_argument('--coverage', action='store_true', help='generate a basic coverage report for the RPC interface')
parser.add_argument('--exclude', '-x', help='specify a comma-separated-list of scripts to exclude.')
parser.add_argument('--extended', action='store_true', help='run the extended test suite in addition to the basic tests')