diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-08-23 23:45:26 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-08-23 23:45:26 +0000 |
commit | 039330c292874c84be79ec5c48b8f14891e91310 (patch) | |
tree | 6ceb84c51cbfb30dd33446ddd363802d73865ac0 /lldb | |
parent | cc4c49dd63a5b9efac9a31d529506f2aef597b3b (diff) | |
download | bcm5719-llvm-039330c292874c84be79ec5c48b8f14891e91310.tar.gz bcm5719-llvm-039330c292874c84be79ec5c48b8f14891e91310.zip |
Take '--help' as well as '-h' as hint to emit the usage output.
llvm-svn: 162502
Diffstat (limited to 'lldb')
-rwxr-xr-x | lldb/test/redo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/redo.py b/lldb/test/redo.py index eee1130170e..acb5aa4f6bb 100755 --- a/lldb/test/redo.py +++ b/lldb/test/redo.py @@ -121,7 +121,7 @@ def main(): index = 1 while index < len(sys.argv): - if sys.argv[index].startswith('-h'): + if sys.argv[index].startswith('-h') or sys.argv[index].startswith('--help'): usage() if sys.argv[index].startswith('-'): |