[Python-checkins] cpython (merge 3.3 -> default): Issue #16115: Merge test skip from 3.3.

chris.jerdonek python-checkins at python.org
Tue Oct 9 02:55:14 CEST 2012


http://hg.python.org/cpython/rev/96b8eb3d3208
changeset:   79601:96b8eb3d3208
parent:      79599:1b37fc50dc1b
parent:      79600:ef90c5e482f4
user:        Chris Jerdonek <chris.jerdonek at gmail.com>
date:        Mon Oct 08 17:54:45 2012 -0700
summary:
  Issue #16115: Merge test skip from 3.3.

files:
  Lib/test/test_subprocess.py |  4 ++++
  1 files changed, 4 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -200,6 +200,10 @@
         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)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list