[Lldb-commits] [lldb] r152941 - /lldb/trunk/test/lldbtest.py
Johnny Chen
johnny.chen at apple.com
Fri Mar 16 13:44:00 PDT 2012
Author: johnny
Date: Fri Mar 16 15:44:00 2012
New Revision: 152941
URL: http://llvm.org/viewvc/llvm-project?rev=152941&view=rev
Log:
Fix a bug in getRunOptions() where there was no space between the arch spec and the compiler spec.
Modified:
lldb/trunk/test/lldbtest.py
Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=152941&r1=152940&r2=152941&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Fri Mar 16 15:44:00 2012
@@ -868,7 +868,7 @@
else:
option_str = ""
if comp:
- option_str += "-C " + comp
+ option_str += " -C " + comp
return option_str
# ==================================================
More information about the lldb-commits
mailing list