[Lldb-commits] [lldb] r115050 - /lldb/trunk/test/foundation/TestObjCMethods.py

Johnny Chen johnny.chen at apple.com
Wed Sep 29 10:58:12 PDT 2010


Author: johnny
Date: Wed Sep 29 12:58:12 2010
New Revision: 115050

URL: http://llvm.org/viewvc/llvm-project?rev=115050&view=rev
Log:
Added two @expectedFailure decorators for test_data_type_and_expr_with_dsym() and
test_data_type_and_expr_with_dwarf().

rdar://problem/8492646
test/foundation fails after updating to tot r115023: self->str displays nothing as output

Modified:
    lldb/trunk/test/foundation/TestObjCMethods.py

Modified: lldb/trunk/test/foundation/TestObjCMethods.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/foundation/TestObjCMethods.py?rev=115050&r1=115049&r2=115050&view=diff
==============================================================================
--- lldb/trunk/test/foundation/TestObjCMethods.py (original)
+++ lldb/trunk/test/foundation/TestObjCMethods.py Wed Sep 29 12:58:12 2010
@@ -23,11 +23,15 @@
         self.buildDwarf()
         self.break_on_objc_methods()
 
+    @unittest2.expectedFailure
+    # rdar://problem/8492646
     def test_data_type_and_expr_with_dsym(self):
         """Lookup objective-c data types and evaluate expressions."""
         self.buildDsym()
         self.data_type_and_expr_objc()
 
+    @unittest2.expectedFailure
+    # rdar://problem/8492646
     def test_data_type_and_expr_with_dwarf(self):
         """Lookup objective-c data types and evaluate expressions."""
         self.buildDwarf()
@@ -110,6 +114,9 @@
         self.expect("expr self->non_existent_member", COMMAND_FAILED_AS_EXPECTED, error=True,
             startstr = "error: 'MyString' does not have a member named 'non_existent_member'")
 
+        # rdar://problem/8492646
+        # test/foundation fails after updating to tot r115023
+        # self->str displays nothing as output
         self.expect("frame variable self->str", VARIABLES_DISPLAYED_CORRECTLY,
             startstr = "(NSString *) self->str")
 





More information about the lldb-commits mailing list