From: Chris Jerdonek Date: Tue, 9 Oct 2012 00:53:46 +0000 (-0700) Subject: Issue #16115: Skip a newly added subprocess.Popen() test on Linux. X-Git-Tag: v3.4.0a1~2300^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d051b8eaf719c69babbccc7291f173cf30c3536;p=thirdparty%2FPython%2Fcpython.git Issue #16115: Skip a newly added subprocess.Popen() test on Linux. --- diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 3dbef13caefe..07e2b4b688d1 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -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)