[Lldb-commits] [lldb] r123792 - /lldb/trunk/test/objc-stepping/TestObjCStepping.py
Johnny Chen
johnny.chen at apple.com
Tue Jan 18 16:31:52 PST 2011
Author: johnny
Date: Tue Jan 18 18:31:52 2011
New Revision: 123792
URL: http://llvm.org/viewvc/llvm-project?rev=123792&view=rev
Log:
Decorated two new expected failures:
rdar://problem/8875425 Found mySource->isa local variable assertion failed
Modified:
lldb/trunk/test/objc-stepping/TestObjCStepping.py
Modified: lldb/trunk/test/objc-stepping/TestObjCStepping.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/objc-stepping/TestObjCStepping.py?rev=123792&r1=123791&r2=123792&view=diff
==============================================================================
--- lldb/trunk/test/objc-stepping/TestObjCStepping.py (original)
+++ lldb/trunk/test/objc-stepping/TestObjCStepping.py Tue Jan 18 18:31:52 2011
@@ -9,6 +9,8 @@
mydir = "objc-stepping"
+ # rdar://problem/8875425 Found mySource->isa local variable assertion failed
+ @unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@python_api_test
def test_with_dsym_and_python_api(self):
@@ -16,6 +18,8 @@
self.buildDsym()
self.objc_stepping()
+ # rdar://problem/8875425 Found mySource->isa local variable assertion failed
+ @unittest2.expectedFailure
@python_api_test
def test_with_dwarf_and_python_api(self):
"""Test stepping through ObjC method dispatch in various forms."""
More information about the lldb-commits
mailing list