summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/tests/process/test_poll.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/pym/portage/tests/process/test_poll.py b/pym/portage/tests/process/test_poll.py
index ee6ee0c3f..c3b50d4be 100644
--- a/pym/portage/tests/process/test_poll.py
+++ b/pym/portage/tests/process/test_poll.py
@@ -34,6 +34,14 @@ class PipeReaderTestCase(TestCase):
scheduler=scheduler)
consumer.start()
- consumer.wait()
+
+ # This will ensure that both tasks have exited, which
+ # is necessary to avoid "ResourceWarning: unclosed file"
+ # warnings since Python 3.2 (and also ensures that we
+ # don't leave any zombie child processes).
+ scheduler.schedule()
+ self.assertEqual(producer.returncode, os.EX_OK)
+ self.assertEqual(consumer.returncode, os.EX_OK)
+
output = consumer.getvalue().decode('ascii', 'replace')
self.assertEqual(test_string, output)