diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-06-28 19:39:19 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-06-28 19:39:19 +0000 |
commit | 66381743782887ded7a953b861b8ad36bef82ace (patch) | |
tree | afea4472cfa7109989b9c09376e7be85fd1a6893 /lldb/test/expression_command/call-function | |
parent | 6cc775f905a850905f9f437d1f67b99ab3f821b1 (diff) | |
download | bcm5719-llvm-66381743782887ded7a953b861b8ad36bef82ace.tar.gz bcm5719-llvm-66381743782887ded7a953b861b8ad36bef82ace.zip |
Add @expectedFailure for TestCallStdStringFunction.py (radar was filed) and
remove @expectedFailure from TestObjCMethods.py's print_ivars_correctly()
function (it has been passing for a while).
llvm-svn: 134022
Diffstat (limited to 'lldb/test/expression_command/call-function')
-rw-r--r-- | lldb/test/expression_command/call-function/TestCallStdStringFunction.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py index 472e6ab418d..4ddfcba3d3e 100644 --- a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py +++ b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py @@ -18,14 +18,16 @@ class ExprCommandCallFunctionTestCase(TestBase): self.line = line_number('main.cpp', '// Please test these expressions while stopped at this line:') + # rdar://problem/9471744 test failure: ./dotest.py -C clang -v -w -t -p CallStdString + @unittest2.expectedFailure @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") def test_with_dsym(self): """Test calling std::String member function.""" self.buildDsym() self.call_function() - @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") - @python_api_test + # rdar://problem/9471744 test failure: ./dotest.py -C clang -v -w -t -p CallStdString + @unittest2.expectedFailure def test_with_dwarf_(self): """Test calling std::String member function.""" self.buildDsym() |