summaryrefslogtreecommitdiff
path: root/Lib/test/test_subprocess.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-03-07 12:21:36 +0000
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-03-07 12:21:36 +0000
commitc02bbe328df8d0edf646c56fb4b7748a54500e6c (patch)
treef90ccd65faaa3708b7421d2a0fa62f5bd81c4f25 /Lib/test/test_subprocess.py
parent6de9e938a5f70128a77c589b3ec40936f6335c1c (diff)
downloadcpython-git-c02bbe328df8d0edf646c56fb4b7748a54500e6c.tar.gz
#2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms.
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r--Lib/test/test_subprocess.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index 937518a8c3..5796fc0cfa 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -768,7 +768,6 @@ class Win32ProcessTestCase(unittest.TestCase):
' -c "import sys; sys.exit(47)"')
self.assertEqual(rc, 47)
- @unittest.skip("It fails on some win32 platforms. See issue #2777")
def test_send_signal(self):
# Redirect the stdin file handle.
# It should fix failure on some win32 platforms.
@@ -779,7 +778,6 @@ class Win32ProcessTestCase(unittest.TestCase):
p.send_signal(signal.SIGTERM)
self.assertNotEqual(p.wait(), 0)
- @unittest.skip("It fails on some win32 platforms. See issue #2777")
def test_kill(self):
p = subprocess.Popen([sys.executable, "-c", "input()"],
stdin=subprocess.PIPE)
@@ -788,7 +786,6 @@ class Win32ProcessTestCase(unittest.TestCase):
p.kill()
self.assertNotEqual(p.wait(), 0)
- @unittest.skip("It fails on some win32 platforms. See issue #2777")
def test_terminate(self):
p = subprocess.Popen([sys.executable, "-c", "input()"],
stdin=subprocess.PIPE)