[Lldb-commits] [lldb] r155144 - /lldb/trunk/test/expression_command/issue_11588/Test11588.py
Johnny Chen
johnny.chen at apple.com
Thu Apr 19 11:36:11 PDT 2012
Author: johnny
Date: Thu Apr 19 13:36:11 2012
New Revision: 155144
URL: http://llvm.org/viewvc/llvm-project?rev=155144&view=rev
Log:
Not a test failure for i386; instead, the test case should be modified to not over-expect type fields for the synthetic childs.
rdar://problem/11277013
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=155144&r1=155143&r2=155144&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/issue_11588/Test11588.py (original)
+++ lldb/trunk/test/expression_command/issue_11588/Test11588.py Thu Apr 19 13:36:11 2012
@@ -13,7 +13,6 @@
mydir = os.path.join("expression_command", "issue_11588")
- @expectedFailurei386
def test_11581_commands(self):
# This is the function to remove the custom commands in order to have a
# clean slate for the next test case.
@@ -44,8 +43,8 @@
self.expect("print *((StgClosure*)(r14-1))",
substrs = ["(StgClosure) $",
"(StgClosure *) &$","0x",
- "(long) addr = ",
- "(long) load_address = "])
+ "addr = ",
+ "load_address = "])
target = lldb.debugger.GetSelectedTarget()
More information about the lldb-commits
mailing list