tests: collect all SIGCHLD before cleaning event loop
On python 3.6.4 apparently it requires two callbacks runs to cleanup stale SIGCHLD handlers.
このコミットが含まれているのは:
コミット
76c872a43a
@ -421,6 +421,13 @@ class QubesTestCase(unittest.TestCase):
|
||||
except asyncio.TimeoutError:
|
||||
raise AssertionError('libvirt event impl drain timeout')
|
||||
|
||||
# this is stupid, but apparently it requires two passes
|
||||
# to cleanup SIGCHLD handlers
|
||||
self.loop.stop()
|
||||
self.loop.run_forever()
|
||||
self.loop.stop()
|
||||
self.loop.run_forever()
|
||||
|
||||
# Check there are no Tasks left.
|
||||
assert not self.loop._ready
|
||||
assert not self.loop._scheduled
|
||||
|
読み込み中…
新しいイシューから参照
ユーザーをブロックする