[Lldb-commits] [lldb] r236366 - Mark the other test of TestFdLeak also as xfail to keep the bot green.
Siva Chandra
sivachandra at google.com
Fri May 1 17:37:13 PDT 2015
Author: sivachandra
Date: Fri May 1 19:37:12 2015
New Revision: 236366
URL: http://llvm.org/viewvc/llvm-project?rev=236366&view=rev
Log:
Mark the other test of TestFdLeak also as xfail to keep the bot green.
Summary:
r235916 marked only one of the tests as xfail, but the other also has
been failing intermitantly on the buildbot.
Reviewers: chaoren
Reviewed By: chaoren
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D9452
Modified:
lldb/trunk/test/functionalities/avoids-fd-leak/TestFdLeak.py
Modified: lldb/trunk/test/functionalities/avoids-fd-leak/TestFdLeak.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/avoids-fd-leak/TestFdLeak.py?rev=236366&r1=236365&r2=236366&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/avoids-fd-leak/TestFdLeak.py (original)
+++ lldb/trunk/test/functionalities/avoids-fd-leak/TestFdLeak.py Fri May 1 19:37:12 2015
@@ -42,6 +42,7 @@ class AvoidsFdLeakTestCase(TestBase):
"Process returned non-zero status. Were incorrect file descriptors passed?")
@expectedFailure(lambda x: sys.version_info >= (2, 7, 8), "bugs.freebsd.org/197376") # python random leaks fd
+ @expectedFailureLinux # xfail flakey test to get buildbot green
@skipIfWindows # The check for descriptor leakage needs to be implemented differently here.
@skipIfTargetAndroid # Android have some other file descriptors open by the shell
def test_fd_leak_multitarget (self):
More information about the lldb-commits
mailing list