[Lldb-commits] [lldb] r134914 - /lldb/trunk/test/lang/objc/objc-static-method/TestObjCStaticMethod.py

Jim Ingham jingham at apple.com
Mon Jul 11 12:47:16 PDT 2011


Author: jingham
Date: Mon Jul 11 14:47:16 2011
New Revision: 134914

URL: http://llvm.org/viewvc/llvm-project?rev=134914&view=rev
Log:
Mark the test with expectedFailure for now.

Modified:
    lldb/trunk/test/lang/objc/objc-static-method/TestObjCStaticMethod.py

Modified: lldb/trunk/test/lang/objc/objc-static-method/TestObjCStaticMethod.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/objc-static-method/TestObjCStaticMethod.py?rev=134914&r1=134913&r2=134914&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/objc-static-method/TestObjCStaticMethod.py (original)
+++ lldb/trunk/test/lang/objc/objc-static-method/TestObjCStaticMethod.py Mon Jul 11 14:47:16 2011
@@ -12,12 +12,17 @@
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @python_api_test
+
+    #<rdar://problem/9745789> "expression" can't call functions in class methods
+    @unittest2.expectedFailure
     def test_with_dsym_and_python_api(self):
         """Test calling functions in static methods."""
         self.buildDsym()
         self.objc_static_method()
 
     @python_api_test
+    #<rdar://problem/9745789> "expression" can't call functions in class methods
+    @unittest2.expectedFailure
     def test_with_dwarf_and_python_api(self):
         """Test calling functions in static methods."""
         self.buildDwarf()





More information about the lldb-commits mailing list