diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-05-09 21:00:03 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-05-09 21:00:03 +0000 |
commit | a21bd407e587e989264dfd6d928ba99f042ab936 (patch) | |
tree | 8defe090bca1e796864895923dc786b32673439b | |
parent | 2f07ad5a70148d9f64963af97b6563ccda7ac12f (diff) | |
download | bcm5719-llvm-a21bd407e587e989264dfd6d928ba99f042ab936.tar.gz bcm5719-llvm-a21bd407e587e989264dfd6d928ba99f042ab936.zip |
Option processing fix: should match '-F' exactly, instead.
llvm-svn: 156509
-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 f8b69feff3b..7e798a5a274 100755 --- a/lldb/test/redo.py +++ b/lldb/test/redo.py @@ -132,7 +132,7 @@ def main(): # End of option processing. break - if sys.argv[index].startswith('-F'): + if sys.argv[index] == '-F': # Increment by 1 to fetch the filename component spec. index += 1 if index >= len(sys.argv) or sys.argv[index].startswith('-'): |