commit | a21bd407e587e989264dfd6d928ba99f042ab936 | [log] [tgz] |
---|---|---|
author | Johnny Chen <johnny.chen@apple.com> | Wed May 09 21:00:03 2012 +0000 |
committer | Johnny Chen <johnny.chen@apple.com> | Wed May 09 21:00:03 2012 +0000 |
tree | 8defe090bca1e796864895923dc786b32673439b | |
parent | 2f07ad5a70148d9f64963af97b6563ccda7ac12f [diff] [blame] |
Option processing fix: should match '-F' exactly, instead. llvm-svn: 156509
diff --git a/lldb/test/redo.py b/lldb/test/redo.py index f8b69fe..7e798a5 100755 --- a/lldb/test/redo.py +++ b/lldb/test/redo.py
@@ -132,7 +132,7 @@ # 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('-'):