summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-09-20 17:31:05 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-09-20 17:31:05 +0000
commitd0b0f4920c05b6f9da115e3da2ce4377909b1fdb (patch)
tree794fa99c2700064dc6dbccc7c08c3858224aac21
parent08e094aee3706be85551022fe5375f067d7ed10c (diff)
downloadbcm5719-llvm-d0b0f4920c05b6f9da115e3da2ce4377909b1fdb.tar.gz
bcm5719-llvm-d0b0f4920c05b6f9da115e3da2ce4377909b1fdb.zip
Add four new expectedFailre decorators to new failures most likely due to r139772 check-in.
llvm-svn: 140150
-rw-r--r--lldb/test/expression_command/formatters/TestFormatters.py4
-rw-r--r--lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py4
2 files changed, 8 insertions, 0 deletions
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()
OpenPOWER on IntegriCloud