forked from OSchip/llvm-project
Add four new expectedFailre decorators to new failures most likely due to r139772 check-in.
llvm-svn: 140150
This commit is contained in:
parent
08e094aee3
commit
d0b0f4920c
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue