diff options
author | Jim Ingham <jingham@apple.com> | 2011-07-11 19:47:16 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-07-11 19:47:16 +0000 |
commit | 54fcc89abd6bd1130ceb406f1ddd735eba6f817d (patch) | |
tree | 8052f6c02ad2a1a7c837d5b1ab784b39b84dd81f | |
parent | 3b935d33a172b81f12c6110e40e0c408b4f3353b (diff) | |
download | bcm5719-llvm-54fcc89abd6bd1130ceb406f1ddd735eba6f817d.tar.gz bcm5719-llvm-54fcc89abd6bd1130ceb406f1ddd735eba6f817d.zip |
Mark the test with expectedFailure for now.
llvm-svn: 134914
-rw-r--r-- | lldb/test/lang/objc/objc-static-method/TestObjCStaticMethod.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/test/lang/objc/objc-static-method/TestObjCStaticMethod.py b/lldb/test/lang/objc/objc-static-method/TestObjCStaticMethod.py index 726e45eeac3..37c5b90924f 100644 --- a/lldb/test/lang/objc/objc-static-method/TestObjCStaticMethod.py +++ b/lldb/test/lang/objc/objc-static-method/TestObjCStaticMethod.py @@ -12,12 +12,17 @@ class TestObjCStaticMethod(TestBase): @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() |