[Lldb-commits] [lldb] r259775 - Mark TestProcessIO as flaky on android
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 4 01:53:37 PST 2016
Author: labath
Date: Thu Feb 4 03:53:37 2016
New Revision: 259775
URL: http://llvm.org/viewvc/llvm-project?rev=259775&view=rev
Log:
Mark TestProcessIO as flaky on android
previously, I have marked only one test as flaky, but now I noticed another test failing with the
same error. I am going to assume all of them are flaky.
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=259775&r1=259774&r2=259775&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 Thu Feb 4 03:53:37 2016
@@ -29,6 +29,7 @@ class ProcessIOTestCase(TestBase):
@skipIfWindows # stdio manipulation unsupported on Windows
@add_test_categories(['pyapi'])
+ @expectedFlakeyAndroid(bugnumber="llvm.org/pr26437", api_levels=[21,22])
def test_stdin_by_api(self):
"""Exercise SBProcess.PutSTDIN()."""
self.build()
@@ -39,7 +40,7 @@ class ProcessIOTestCase(TestBase):
@skipIfWindows # stdio manipulation unsupported on Windows
@add_test_categories(['pyapi'])
- @expectedFlakeyAndroid(bugnumber="llvm.org/pr26437", archs=["aarch64"], api_levels=[21])
+ @expectedFlakeyAndroid(bugnumber="llvm.org/pr26437", api_levels=[21,22])
def test_stdin_redirection(self):
"""Exercise SBLaunchInfo::AddOpenFileAction() for STDIN without specifying STDOUT or STDERR."""
self.build()
@@ -51,6 +52,7 @@ class ProcessIOTestCase(TestBase):
@skipIfWindows # stdio manipulation unsupported on Windows
@add_test_categories(['pyapi'])
+ @expectedFlakeyAndroid(bugnumber="llvm.org/pr26437", api_levels=[21,22])
def test_stdout_redirection(self):
"""Exercise SBLaunchInfo::AddOpenFileAction() for STDOUT without specifying STDIN or STDERR."""
self.build()
@@ -63,6 +65,7 @@ class ProcessIOTestCase(TestBase):
@skipIfWindows # stdio manipulation unsupported on Windows
@add_test_categories(['pyapi'])
+ @expectedFlakeyAndroid(bugnumber="llvm.org/pr26437", api_levels=[21,22])
def test_stderr_redirection(self):
"""Exercise SBLaunchInfo::AddOpenFileAction() for STDERR without specifying STDIN or STDOUT."""
self.build()
@@ -75,6 +78,7 @@ class ProcessIOTestCase(TestBase):
@skipIfWindows # stdio manipulation unsupported on Windows
@add_test_categories(['pyapi'])
+ @expectedFlakeyAndroid(bugnumber="llvm.org/pr26437", api_levels=[21,22])
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