[Lldb-commits] [lldb] r142823 - /lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py

Johnny Chen johnny.chen at apple.com
Mon Oct 24 11:11:16 PDT 2011


Author: johnny
Date: Mon Oct 24 13:11:16 2011
New Revision: 142823

URL: http://llvm.org/viewvc/llvm-project?rev=142823&view=rev
Log:
Removed the @expectedFailure decorators from test cases.  They have been fixed with the r142717 check-in.

Modified:
    lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py

Modified: lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py?rev=142823&r1=142822&r2=142823&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py (original)
+++ lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py Mon Oct 24 13:11:16 2011
@@ -18,17 +18,13 @@
         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 @@
         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!





More information about the lldb-commits mailing list