diff options
author | Daniel Dunbar <daniel@zuster.org> | 2013-04-11 00:31:27 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2013-04-11 00:31:27 +0000 |
commit | e94bd36dc715bc05aff35e04528dbc409a87d97c (patch) | |
tree | 78956a732d0e3491d152466ac8159c5d8dc9073d /utils | |
parent | 6be0ae59ec79864f627d8dc8d6c4976116386cba (diff) |
lit: Shorten a metavar to make --help look nicer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179248 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/lit/lit/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lit/lit/main.py b/utils/lit/lit/main.py index da961eeedc..de97a8e1aa 100755 --- a/utils/lit/lit/main.py +++ b/utils/lit/lit/main.py @@ -219,7 +219,7 @@ def main(builtinParameters = {}): group.add_option("", "--shuffle", dest="shuffle", help="Run tests in random order", action="store_true", default=False) - group.add_option("", "--filter", dest="filter", metavar="EXPRESSION", + group.add_option("", "--filter", dest="filter", metavar="REGEX", help=("Only run tests with paths matching the given " "regular expression"), action="store", default=None) |