Add expectedFailureLinux to TestProcessAttach

The test is skipped anyway due to timeout, but adding XFAIL improves grepability.

llvm-svn: 236224
This commit is contained in:
Pavel Labath 2015-04-30 11:00:15 +00:00
parent 4d532b5617
commit ac8be96242
1 changed files with 6 additions and 2 deletions

View File

@ -22,7 +22,9 @@ class ProcessAttachTestCase(TestBase):
self.process_attach_by_id()
@dwarf_test
@skipIfLinux # llvm.org/pr23360
#Make sure this test appears when grepping for XFAIL. It is also skipped because it tends to time out.
@expectedFailureLinux # llvm.org/pr23360
@skipIfLinux
def test_attach_to_process_by_id_with_dwarf(self):
"""Test attach by process id"""
self.buildDwarf()
@ -36,7 +38,9 @@ class ProcessAttachTestCase(TestBase):
self.process_attach_by_name()
@dwarf_test
@skipIfLinux # llvm.org/pr23360
#Make sure this test appears when grepping for XFAIL. It is also skipped because it tends to time out.
@expectedFailureLinux # llvm.org/pr23360
@skipIfLinux
def test_attach_to_process_by_name_with_dwarf(self):
"""Test attach by process name"""
self.buildDwarf()