clients/tests: increase timeout for asynchronous jobs

The default timeout is really only here to abort the test when it
definitely failed to avoid keeping it hanging forever. It's not part
of any strict assertions and should be large.

Fixes: bb4b749595 ('clients/tests: don't wait for first job before scheduling parallel jobs')
This commit is contained in:
Thomas Haller 2019-10-13 13:23:40 +02:00
parent b6725a59d0
commit 3363118ba0

View file

@ -444,7 +444,7 @@ class AsyncProcess():
args,
env,
complete_cb,
max_waittime_msec = 3000):
max_waittime_msec = 20000):
self._args = list(args)
self._env = env
self._complete_cb = complete_cb