[Lldb-commits] [lldb] r134022 - in /lldb/trunk/test: expression_command/call-function/TestCallStdStringFunction.py lang/objc/foundation/TestObjCMethods.py
Johnny Chen
johnny.chen at apple.com
Tue Jun 28 12:39:19 PDT 2011
Author: johnny
Date: Tue Jun 28 14:39:19 2011
New Revision: 134022
URL: http://llvm.org/viewvc/llvm-project?rev=134022&view=rev
Log:
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).
Modified:
lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py
lldb/trunk/test/lang/objc/foundation/TestObjCMethods.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=134022&r1=134021&r2=134022&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py (original)
+++ lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py Tue Jun 28 14:39:19 2011
@@ -18,14 +18,16 @@
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()
Modified: lldb/trunk/test/lang/objc/foundation/TestObjCMethods.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/foundation/TestObjCMethods.py?rev=134022&r1=134021&r2=134022&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/foundation/TestObjCMethods.py (original)
+++ lldb/trunk/test/lang/objc/foundation/TestObjCMethods.py Tue Jun 28 14:39:19 2011
@@ -199,7 +199,6 @@
self.expect("expression -o -- my", "Object description displayed correctly",
patterns = ["Hello from.*a.out.*with timestamp: "])
- @unittest2.expectedFailure
# See: <rdar://problem/8717050> lldb needs to use the ObjC runtime symbols for ivar offsets
# Only fails for the ObjC 2.0 runtime.
def print_ivars_correctly(self) :
More information about the lldb-commits
mailing list