From d0b0f4920c05b6f9da115e3da2ce4377909b1fdb Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Tue, 20 Sep 2011 17:31:05 +0000 Subject: Add four new expectedFailre decorators to new failures most likely due to r139772 check-in. llvm-svn: 140150 --- lldb/test/expression_command/formatters/TestFormatters.py | 4 ++++ .../data-formatter/data-formatter-objc/TestDataFormatterObjC.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/lldb/test/expression_command/formatters/TestFormatters.py b/lldb/test/expression_command/formatters/TestFormatters.py index 027191b681e..0a6ab7b058c 100644 --- a/lldb/test/expression_command/formatters/TestFormatters.py +++ b/lldb/test/expression_command/formatters/TestFormatters.py @@ -18,12 +18,16 @@ class ExprFormattersTestCase(TestBase): 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() diff --git a/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py b/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py index f6e5e23c70a..7100b8677d6 100644 --- a/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py +++ b/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py @@ -11,12 +11,16 @@ class ObjCDataFormatterTestCase(TestBase): 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() -- cgit v1.2.3