mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #16115: Skip a newly added subprocess.Popen() test on Linux.
This commit is contained in:
parent
776cb199bc
commit
2d051b8eaf
1 changed files with 4 additions and 0 deletions
|
@ -200,6 +200,10 @@ class ProcessTestCase(BaseTestCase):
|
|||
p.wait()
|
||||
self.assertEqual(47, p.returncode)
|
||||
|
||||
# TODO: make this test work on Linux.
|
||||
# This may be failing on Linux because of issue #7774.
|
||||
@unittest.skipIf(sys.platform not in ('win32', 'darwin'),
|
||||
"possible bug using executable argument on Linux")
|
||||
def test_executable(self):
|
||||
# Check that the executable argument works.
|
||||
self._assert_python(["doesnotexist", "-c"], executable=sys.executable)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue