forked from OSchip/llvm-project
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
This commit is contained in:
parent
79af6b33e0
commit
392408cfc8
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue