[Lldb-commits] [lldb] r156509 - /lldb/trunk/test/redo.py
Johnny Chen
johnny.chen at apple.com
Wed May 9 14:00:04 PDT 2012
Author: johnny
Date: Wed May 9 16:00:03 2012
New Revision: 156509
URL: http://llvm.org/viewvc/llvm-project?rev=156509&view=rev
Log:
Option processing fix: should match '-F' exactly, instead.
Modified:
lldb/trunk/test/redo.py
Modified: lldb/trunk/test/redo.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/redo.py?rev=156509&r1=156508&r2=156509&view=diff
==============================================================================
--- lldb/trunk/test/redo.py (original)
+++ lldb/trunk/test/redo.py Wed May 9 16:00:03 2012
@@ -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('-'):
More information about the lldb-commits
mailing list