Commit 886455cc authored by Gregory P. Smith's avatar Gregory P. Smith

Fix a unittest error seen on NetBSD 5.

parent 4842efcf
......@@ -1273,8 +1273,18 @@ class POSIXProcessTestCase(BaseTestCase):
self.addCleanup(p1.wait)
self.addCleanup(p2.wait)
self.addCleanup(p1.terminate)
self.addCleanup(p2.terminate)
def kill_p1():
try:
p1.terminate()
except ProcessLookupError:
pass
def kill_p2():
try:
p2.terminate()
except ProcessLookupError:
pass
self.addCleanup(kill_p1)
self.addCleanup(kill_p2)
p1.stdin.write(data)
p1.stdin.close()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment