[Lldb-commits] [lldb] r236224 - Add expectedFailureLinux to TestProcessAttach
Pavel Labath
labath at google.com
Thu Apr 30 04:00:15 PDT 2015
Author: labath
Date: Thu Apr 30 06:00:15 2015
New Revision: 236224
URL: http://llvm.org/viewvc/llvm-project?rev=236224&view=rev
Log:
Add expectedFailureLinux to TestProcessAttach
The test is skipped anyway due to timeout, but adding XFAIL improves grepability.
Modified:
lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py
Modified: lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py?rev=236224&r1=236223&r2=236224&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py (original)
+++ lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py Thu Apr 30 06:00:15 2015
@@ -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()
More information about the lldb-commits
mailing list