aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-09-03 23:25:24 -0700
committerZac Medico <zmedico@gentoo.org>2010-09-03 23:25:24 -0700
commit564ad295af30cbf1b92476992ad2520da7806bbe (patch)
tree05a9009af87dc48b6cff7368a554942a30f6298b /pym/portage/tests/ebuild/test_ipc_daemon.py
parentAdd back PortageException handler inside mod_mail_summary.finalize() (diff)
downloadportage-564ad295af30cbf1b92476992ad2520da7806bbe.tar.gz
portage-564ad295af30cbf1b92476992ad2520da7806bbe.tar.bz2
portage-564ad295af30cbf1b92476992ad2520da7806bbe.zip
In the short timeout test for QueueScheduler.run(), assert that the
subprocess has stopped.
Diffstat (limited to 'pym/portage/tests/ebuild/test_ipc_daemon.py')
-rw-r--r--pym/portage/tests/ebuild/test_ipc_daemon.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage/tests/ebuild/test_ipc_daemon.py b/pym/portage/tests/ebuild/test_ipc_daemon.py
index 3298040a8..caf54c9b9 100644
--- a/pym/portage/tests/ebuild/test_ipc_daemon.py
+++ b/pym/portage/tests/ebuild/test_ipc_daemon.py
@@ -103,6 +103,7 @@ class IpcDaemonTestCase(TestCase):
self.assertEqual(self.received_command, False,
"command received after %d seconds" % \
(time.time() - start_time,))
+ self.assertEqual(proc.isAlive(), False)
self.assertEqual(proc.returncode == os.EX_OK, False)
finally: