forked from OSchip/llvm-project
Add @expectedFailure decorator with radar number.
llvm-svn: 151212
This commit is contained in:
parent
033b9add40
commit
0afd64a8bb
|
@ -11,12 +11,16 @@ class PythonSynthDataFormatterTestCase(TestBase):
|
|||
|
||||
mydir = os.path.join("functionalities", "data-formatter", "data-formatter-python-synth")
|
||||
|
||||
# rdar://problem/10887661
|
||||
@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/10887661
|
||||
@unittest2.expectedFailure
|
||||
def test_with_dwarf_and_run_command(self):
|
||||
"""Test data formatter commands."""
|
||||
self.buildDwarf()
|
||||
|
|
Loading…
Reference in New Issue