mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +00:00
Rewrite pipe code using subprocess, to make sure the
child process is closed when the test completes.
This commit is contained in:
parent
d478f3453f
commit
83be9669c8
1 changed files with 9 additions and 9 deletions
|
@ -1,7 +1,7 @@
|
|||
from test import test_support
|
||||
import unittest
|
||||
|
||||
import sys, os, cStringIO
|
||||
import sys, os, cStringIO, subprocess
|
||||
import quopri
|
||||
|
||||
|
||||
|
@ -176,17 +176,17 @@ zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz''')
|
|||
|
||||
def test_scriptencode(self):
|
||||
(p, e) = self.STRINGS[-1]
|
||||
(cin, cout) = os.popen2("%s -mquopri" % sys.executable)
|
||||
cin.write(p)
|
||||
cin.close()
|
||||
self.assert_(cout.read() == e)
|
||||
process = subprocess.Popen([sys.executable, "-mquopri"],
|
||||
stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
||||
cout, cerr = process.communicate(p)
|
||||
self.assert_(cout == e)
|
||||
|
||||
def test_scriptdecode(self):
|
||||
(p, e) = self.STRINGS[-1]
|
||||
(cin, cout) = os.popen2("%s -mquopri -d" % sys.executable)
|
||||
cin.write(e)
|
||||
cin.close()
|
||||
self.assert_(cout.read() == p)
|
||||
process = subprocess.Popen([sys.executable, "-mquopri", "-d"],
|
||||
stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
||||
cout, cerr = process.communicate(e)
|
||||
self.assert_(cout == p)
|
||||
|
||||
def test_main():
|
||||
test_support.run_unittest(QuopriTestCase)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue