diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-10-24 18:11:16 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-10-24 18:11:16 +0000 |
commit | e5b190304da3c0df84bf9491c1689b4f55cd12cf (patch) | |
tree | 7260ff8cc990b4a36a0c7dc691c1d798bb090486 /lldb/test/expression_command/call-function/TestCallStdStringFunction.py | |
parent | 0cc574eee7f5538c86ceeee16f3ca0d9d9dc7c97 (diff) | |
download | bcm5719-llvm-e5b190304da3c0df84bf9491c1689b4f55cd12cf.tar.gz bcm5719-llvm-e5b190304da3c0df84bf9491c1689b4f55cd12cf.zip |
Removed the @expectedFailure decorators from test cases. They have been fixed with the r142717 check-in.
llvm-svn: 142823
Diffstat (limited to 'lldb/test/expression_command/call-function/TestCallStdStringFunction.py')
-rw-r--r-- | lldb/test/expression_command/call-function/TestCallStdStringFunction.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py index 4ddfcba3d3e..38d73ea4b6e 100644 --- a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py +++ b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py @@ -18,17 +18,13 @@ 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() - # rdar://problem/9471744 test failure: ./dotest.py -C clang -v -w -t -p CallStdString - @unittest2.expectedFailure - def test_with_dwarf_(self): + def test_with_dwarf(self): """Test calling std::String member function.""" self.buildDsym() self.call_function() @@ -47,6 +43,8 @@ class ExprCommandCallFunctionTestCase(TestBase): self.expect("print str", substrs = ['Hello world']) + # Should be fixed with r142717. + # # rdar://problem/9471744 test failure: ./dotest.py -C clang -v -w -t -p CallStdString # runCmd: print str.c_str() # runCmd failed! |