Kaydet (Commit) 82a74cb1 authored tarafından Chris Jerdonek's avatar Chris Jerdonek

Issue #16115: Merge test skip from 3.3.

...@@ -200,6 +200,10 @@ class ProcessTestCase(BaseTestCase): ...@@ -200,6 +200,10 @@ class ProcessTestCase(BaseTestCase):
p.wait() p.wait()
self.assertEqual(47, p.returncode) 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): def test_executable(self):
# Check that the executable argument works. # Check that the executable argument works.
self._assert_python(["doesnotexist", "-c"], executable=sys.executable) self._assert_python(["doesnotexist", "-c"], executable=sys.executable)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment