From ac8be962429056da1ee2ae882a9212dde0c10a65 Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Thu, 30 Apr 2015 11:00:15 +0000 Subject: [PATCH] Add expectedFailureLinux to TestProcessAttach The test is skipped anyway due to timeout, but adding XFAIL improves grepability. llvm-svn: 236224 --- .../functionalities/process_attach/TestProcessAttach.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lldb/test/functionalities/process_attach/TestProcessAttach.py b/lldb/test/functionalities/process_attach/TestProcessAttach.py index 4a9d992ace2f..42b893f685fa 100644 --- a/lldb/test/functionalities/process_attach/TestProcessAttach.py +++ b/lldb/test/functionalities/process_attach/TestProcessAttach.py @@ -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()