[Lldb-commits] [lldb] r137748 - /lldb/trunk/test/redo.py
Johnny Chen
johnny.chen at apple.com
Tue Aug 16 13:56:10 PDT 2011
Author: johnny
Date: Tue Aug 16 15:56:10 2011
New Revision: 137748
URL: http://llvm.org/viewvc/llvm-project?rev=137748&view=rev
Log:
Add comment on known restrictions of the current implementation.
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=137748&r1=137747&r2=137748&view=diff
==============================================================================
--- lldb/trunk/test/redo.py (original)
+++ lldb/trunk/test/redo.py Tue Aug 16 15:56:10 2011
@@ -23,7 +23,14 @@
# To be filled with the filterspecs found in the session logs.
redo_specs = []
+
+# There is a known bug with respect to comp_specs and arch_specs, in that if we
+# encountered "-C clang" and "-C gcc" when visiting the session files, both
+# compilers will end up in the invocation of the test driver when rerunning.
+# That is: ./dotest -v -C clang^gcc ... -f ...". Ditto for "-A" flags.
+# The "-C compiler" for comp_specs.
comp_specs = set()
+# The "-A arch" for arch_specs.
arch_specs = set()
def usage():
More information about the lldb-commits
mailing list