diff options
author | Pavel Labath <labath@google.com> | 2016-03-14 11:19:39 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-03-14 11:19:39 +0000 |
commit | 392408cfc82ff0681c82377902b873e0ab688378 (patch) | |
tree | e978688c7434436b35c5622c4819aebcaa2aff8e /lldb/packages/Python/lldbsuite/test/python_api/process/io | |
parent | 79af6b33e0ff1e59f18a9d4868cf9c8b655544e9 (diff) | |
download | bcm5719-llvm-392408cfc82ff0681c82377902b873e0ab688378.tar.gz bcm5719-llvm-392408cfc82ff0681c82377902b873e0ab688378.zip |
Extend XFlaky in TestProcessIO to linux as well
The test sometimes fails on local linux as well. The cause is the same.
llvm-svn: 263421
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api/process/io')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py | 10 |
1 files changed, 5 insertions, 5 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 3c0b271231a..1a194035f4d 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 @@ -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() |