[Lldb-commits] [lldb] r169615 - /lldb/trunk/test/expression_command/issue_11588/Test11588.py
Andrew Kaylor
andrew.kaylor at intel.com
Fri Dec 7 09:45:05 PST 2012
Author: akaylor
Date: Fri Dec 7 11:45:05 2012
New Revision: 169615
URL: http://llvm.org/viewvc/llvm-project?rev=169615&view=rev
Log:
Fix Test11588.py on Linux. The test was failing because the synthetic type fields were resolving to int instead of long. A similar change was made in r155144 to eliminate the type specification for an earlier check in this test, so it seemed appropriate here too.
Modified:
lldb/trunk/test/expression_command/issue_11588/Test11588.py
Modified: lldb/trunk/test/expression_command/issue_11588/Test11588.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/issue_11588/Test11588.py?rev=169615&r1=169614&r2=169615&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/issue_11588/Test11588.py (original)
+++ lldb/trunk/test/expression_command/issue_11588/Test11588.py Fri Dec 7 11:45:05 2012
@@ -63,8 +63,8 @@
self.expect("print *(StgClosure*)$r14",
substrs = ["(StgClosure) $",
"(StgClosure *) &$","0x",
- "(long) addr = ",
- "(long) load_address = ",
+ "addr = ",
+ "load_address = ",
hex(addr)[2:].rstrip("L"),
str(addr)])
More information about the lldb-commits
mailing list