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 | 2e4a49ae25aee080ddef68767f99e8e93dd39aef (patch) | |
tree | cdaa377854cacd8966d8c5f64316ca25ff00285f /llvm/utils/lit | |
parent | 970faff8c126202ef721d3ae3cf4bfd21c7004cc (diff) | |
download | bcm5719-llvm-2e4a49ae25aee080ddef68767f99e8e93dd39aef.tar.gz bcm5719-llvm-2e4a49ae25aee080ddef68767f99e8e93dd39aef.zip |
lit: Shorten a metavar to make --help look nicer.
llvm-svn: 179248
Diffstat (limited to 'llvm/utils/lit')
-rwxr-xr-x | llvm/utils/lit/lit/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/lit/lit/main.py b/llvm/utils/lit/lit/main.py index da961eeedc6..de97a8e1aaf 100755 --- a/llvm/utils/lit/lit/main.py +++ b/llvm/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) |