diff options
author | Pavel Labath <labath@google.com> | 2016-02-04 09:53:37 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-02-04 09:53:37 +0000 |
commit | e1649a7853ad419067110ee74b38f82cf54f697b (patch) | |
tree | 7e8c5571577ce3296b0b909f8adc866ea448d634 /lldb/packages/Python/lldbsuite/test | |
parent | fcf08db0f9fb5f3e12d72d0ae0151c7742b7933f (diff) | |
download | bcm5719-llvm-e1649a7853ad419067110ee74b38f82cf54f697b.tar.gz bcm5719-llvm-e1649a7853ad419067110ee74b38f82cf54f697b.zip |
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.
llvm-svn: 259775
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py b/lldb/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py index 58703772b3b..1a3e853582e 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py @@ -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() |