[Lldb-commits] [lldb] r263421 - Extend XFlaky in TestProcessIO to linux as well

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Mon Mar 14 04:19:40 PDT 2016


Author: labath
Date: Mon Mar 14 06:19:39 2016
New Revision: 263421

URL: http://llvm.org/viewvc/llvm-project?rev=263421&view=rev
Log:
Extend XFlaky in TestProcessIO to linux as well

The test sometimes fails on local linux as well. The cause is the same.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py?rev=263421&r1=263420&r2=263421&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py Mon Mar 14 06:19:39 2016
@@ -30,7 +30,7 @@ class ProcessIOTestCase(TestBase):
 
     @skipIfWindows # stdio manipulation unsupported on Windows
     @add_test_categories(['pyapi'])
-    @expectedFlakeyAndroid(bugnumber="llvm.org/pr26437", api_levels=[21,22])
+    @expectedFlakeyLinux(bugnumber="llvm.org/pr26437")
     def test_stdin_by_api(self):
         """Exercise SBProcess.PutSTDIN()."""
         self.build()
@@ -41,7 +41,7 @@ class ProcessIOTestCase(TestBase):
 
     @skipIfWindows # stdio manipulation unsupported on Windows
     @add_test_categories(['pyapi'])
-    @expectedFlakeyAndroid(bugnumber="llvm.org/pr26437", api_levels=[21,22])
+    @expectedFlakeyLinux(bugnumber="llvm.org/pr26437")
     def test_stdin_redirection(self):
         """Exercise SBLaunchInfo::AddOpenFileAction() for STDIN without specifying STDOUT or STDERR."""
         self.build()
@@ -53,7 +53,7 @@ class ProcessIOTestCase(TestBase):
 
     @skipIfWindows # stdio manipulation unsupported on Windows
     @add_test_categories(['pyapi'])
-    @expectedFlakeyAndroid(bugnumber="llvm.org/pr26437", api_levels=[21,22])
+    @expectedFlakeyLinux(bugnumber="llvm.org/pr26437")
     def test_stdout_redirection(self):
         """Exercise SBLaunchInfo::AddOpenFileAction() for STDOUT without specifying STDIN or STDERR."""
         self.build()
@@ -66,7 +66,7 @@ class ProcessIOTestCase(TestBase):
 
     @skipIfWindows # stdio manipulation unsupported on Windows
     @add_test_categories(['pyapi'])
-    @expectedFlakeyAndroid(bugnumber="llvm.org/pr26437", api_levels=[21,22])
+    @expectedFlakeyLinux(bugnumber="llvm.org/pr26437")
     def test_stderr_redirection(self):
         """Exercise SBLaunchInfo::AddOpenFileAction() for STDERR without specifying STDIN or STDOUT."""
         self.build()
@@ -79,7 +79,7 @@ class ProcessIOTestCase(TestBase):
 
     @skipIfWindows # stdio manipulation unsupported on Windows
     @add_test_categories(['pyapi'])
-    @expectedFlakeyAndroid(bugnumber="llvm.org/pr26437", api_levels=[21,22])
+    @expectedFlakeyLinux(bugnumber="llvm.org/pr26437")
     def test_stdout_stderr_redirection(self):
         """Exercise SBLaunchInfo::AddOpenFileAction() for STDOUT and STDERR without redirecting STDIN."""
         self.build()




More information about the lldb-commits mailing list