tests: fix resource leaks - process not waited for

This commit is contained in:
Marek Marczykowski-Górecki 2019-04-02 18:48:43 +02:00
parent 6b93aea5bd
commit fc154fbbad
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -160,7 +160,10 @@ class TC_50_MimeHandlers:
window_class = self.get_window_class(winid, dispvm) window_class = self.get_window_class(winid, dispvm)
# close the window - we've got the window class, it is no longer needed # close the window - we've got the window class, it is no longer needed
subprocess.check_call(['wmctrl', '-i', '-c', winid]) subprocess.check_call(['wmctrl', '-i', '-c', winid])
p.wait() try:
self.loop.run_until_complete(asyncio.wait_for(p.wait(), 30))
except asyncio.TimeoutError:
self.fail('qvm-open-in-vm did not exited')
self.wait_for_window(window_title, show=False) self.wait_for_window(window_title, show=False)
def check_matches(obj, patterns): def check_matches(obj, patterns):