forked from OSchip/llvm-project
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:
parent
4d532b5617
commit
ac8be96242
|
@ -22,7 +22,9 @@ class ProcessAttachTestCase(TestBase):
|
||||||
self.process_attach_by_id()
|
self.process_attach_by_id()
|
||||||
|
|
||||||
@dwarf_test
|
@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):
|
def test_attach_to_process_by_id_with_dwarf(self):
|
||||||
"""Test attach by process id"""
|
"""Test attach by process id"""
|
||||||
self.buildDwarf()
|
self.buildDwarf()
|
||||||
|
@ -36,7 +38,9 @@ class ProcessAttachTestCase(TestBase):
|
||||||
self.process_attach_by_name()
|
self.process_attach_by_name()
|
||||||
|
|
||||||
@dwarf_test
|
@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):
|
def test_attach_to_process_by_name_with_dwarf(self):
|
||||||
"""Test attach by process name"""
|
"""Test attach by process name"""
|
||||||
self.buildDwarf()
|
self.buildDwarf()
|
||||||
|
|
Loading…
Reference in New Issue