audio: increase timeout to match hvm loading

This commit is contained in:
Dmitry Fedorov 2020-07-08 13:02:51 +03:00
parent a27a8edf88
commit 2fe57b6281
No known key found for this signature in database
GPG Key ID: C61C7F61C4D85F8D

View File

@ -423,7 +423,7 @@ class TC_00_AppVMMixin(object):
# then wait for the stream to appear in dom0
local_user = grp.getgrnam('qubes').gr_mem[0]
p = self.loop.run_until_complete(asyncio.create_subprocess_shell(
"sudo -E -u {} timeout 30s sh -c '"
"sudo -E -u {} timeout 60s sh -c '"
"while ! pactl list sink-inputs | grep -q :{}; do sleep 1; done'"
.format(local_user, vm.name)))
self.loop.run_until_complete(p.wait())