Option processing fix: should match '-F' exactly, instead.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@156509 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/redo.py b/test/redo.py
index f8b69fe..7e798a5 100755
--- a/test/redo.py
+++ b/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('-'):