summaryrefslogtreecommitdiffstats
path: root/Lib/test/libregrtest
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-08-17 09:25:43 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-08-17 09:25:43 (GMT)
commit6c44619ece6b6c59075d934af160e20d2025f901 (patch)
tree0fc8e555af55989345d5eb1e7f81634f6e99635b /Lib/test/libregrtest
parent717a32b75569b9f42792a8c515a5e463a9380e4a (diff)
downloadcpython-6c44619ece6b6c59075d934af160e20d2025f901.zip
cpython-6c44619ece6b6c59075d934af160e20d2025f901.tar.gz
cpython-6c44619ece6b6c59075d934af160e20d2025f901.tar.bz2
regrtest: rename --slow option to --slowest
Thanks to optparse, --slow syntax still works ;-)
Diffstat (limited to 'Lib/test/libregrtest')
-rw-r--r--Lib/test/libregrtest/cmdline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/libregrtest/cmdline.py b/Lib/test/libregrtest/cmdline.py
index f2ec0bd..1f7aaed 100644
--- a/Lib/test/libregrtest/cmdline.py
+++ b/Lib/test/libregrtest/cmdline.py
@@ -168,7 +168,7 @@ def _create_parser():
help='display test output on failure')
group.add_argument('-q', '--quiet', action='store_true',
help='no output unless one or more tests fail')
- group.add_argument('-o', '--slow', action='store_true', dest='print_slow',
+ group.add_argument('-o', '--slowest', action='store_true', dest='print_slow',
help='print the slowest 10 tests')
group.add_argument('--header', action='store_true',
help='print header with interpreter info')