summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-10-09 00:54:45 (GMT)
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-10-09 00:54:45 (GMT)
commit82a74cb12914047dd08851873ea66a73306d6383 (patch)
treecf1e7f5841f4b7185198e11d2587b8b37b2fb431
parent68a11fc337cb371ee27150fb9f311fda04edccca (diff)
parent2d051b8eaf719c69babbccc7291f173cf30c3536 (diff)
downloadcpython-82a74cb12914047dd08851873ea66a73306d6383.zip
cpython-82a74cb12914047dd08851873ea66a73306d6383.tar.gz
cpython-82a74cb12914047dd08851873ea66a73306d6383.tar.bz2
Issue #16115: Merge test skip from 3.3.
-rw-r--r--Lib/test/test_subprocess.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index 3dbef13..07e2b4b 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)