[Lldb-commits] [lldb] r140150 - in /lldb/trunk/test: expression_command/formatters/TestFormatters.py functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py
Johnny Chen
johnny.chen at apple.com
Tue Sep 20 10:31:06 PDT 2011
Author: johnny
Date: Tue Sep 20 12:31:05 2011
New Revision: 140150
URL: http://llvm.org/viewvc/llvm-project?rev=140150&view=rev
Log:
Add four new expectedFailre decorators to new failures most likely due to r139772 check-in.
Modified:
lldb/trunk/test/expression_command/formatters/TestFormatters.py
lldb/trunk/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py
Modified: lldb/trunk/test/expression_command/formatters/TestFormatters.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/formatters/TestFormatters.py?rev=140150&r1=140149&r2=140150&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/formatters/TestFormatters.py (original)
+++ lldb/trunk/test/expression_command/formatters/TestFormatters.py Tue Sep 20 12:31:05 2011
@@ -18,12 +18,16 @@
self.line = line_number('main.cpp',
'// Stop here')
+ # rdar://problem/10153585 lldb ToT regression of test suite with r139772 check-in
+ @unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym(self):
"""Test expr + formatters for good interoperability."""
self.buildDsym()
self.do_my_test()
+ # rdar://problem/10153585 lldb ToT regression of test suite with r139772 check-in
+ @unittest2.expectedFailure
def test_with_dwarf_(self):
"""Test expr + formatters for good interoperability."""
self.buildDsym()
Modified: lldb/trunk/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py?rev=140150&r1=140149&r2=140150&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py (original)
+++ lldb/trunk/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py Tue Sep 20 12:31:05 2011
@@ -11,12 +11,16 @@
mydir = os.path.join("functionalities", "data-formatter", "data-formatter-objc")
+ # rdar://problem/10153585 lldb ToT regression of test suite with r139772 check-in
+ @unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_run_command(self):
"""Test data formatter commands."""
self.buildDsym()
self.data_formatter_commands()
+ # rdar://problem/10153585 lldb ToT regression of test suite with r139772 check-in
+ @unittest2.expectedFailure
def test_with_dwarf_and_run_command(self):
"""Test data formatter commands."""
self.buildDwarf()
More information about the lldb-commits
mailing list