summaryrefslogtreecommitdiffstats
path: root/pym/portage/tests/ebuild/test_ipc_daemon.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/tests/ebuild/test_ipc_daemon.py')
-rw-r--r--pym/portage/tests/ebuild/test_ipc_daemon.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/pym/portage/tests/ebuild/test_ipc_daemon.py b/pym/portage/tests/ebuild/test_ipc_daemon.py
index edfc058d7..0efab6584 100644
--- a/pym/portage/tests/ebuild/test_ipc_daemon.py
+++ b/pym/portage/tests/ebuild/test_ipc_daemon.py
@@ -71,8 +71,8 @@ class IpcDaemonTestCase(TestCase):
self.received_command = False
def exit_command_callback():
self.received_command = True
- proc.cancel()
- daemon.cancel()
+ task_scheduler.clear()
+ task_scheduler.wait()
exit_command.reply_hook = exit_command_callback
start_time = time.time()
@@ -80,6 +80,7 @@ class IpcDaemonTestCase(TestCase):
task_scheduler.add(proc)
task_scheduler.run(timeout=self._SCHEDULE_TIMEOUT)
task_scheduler.clear()
+ task_scheduler.wait()
hardlock_cleanup(env['PORTAGE_BUILDDIR'],
remove_all_locks=True)
@@ -108,8 +109,8 @@ class IpcDaemonTestCase(TestCase):
self.received_command = False
def exit_command_callback():
self.received_command = True
- proc.cancel()
- daemon.cancel()
+ task_scheduler.clear()
+ task_scheduler.wait()
exit_command.reply_hook = exit_command_callback
start_time = time.time()
@@ -117,6 +118,7 @@ class IpcDaemonTestCase(TestCase):
task_scheduler.add(proc)
task_scheduler.run(timeout=short_timeout_ms)
task_scheduler.clear()
+ task_scheduler.wait()
hardlock_cleanup(env['PORTAGE_BUILDDIR'],
remove_all_locks=True)