test: ipc: unixsocket: Increase process exit timeout

When running tests on slower devices, 200ms is too low to wait for the
process to exit. Increase the timeout to 2s.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2023-12-06 19:57:06 +02:00
parent 9dc2642d2c
commit efcda47985

View file

@ -431,7 +431,7 @@ private:
if (ret) if (ret)
return ret; return ret;
timeout.start(200ms); timeout.start(2s);
while (!callDone_) { while (!callDone_) {
if (!timeout.isRunning()) { if (!timeout.isRunning()) {
cerr << "Call timeout!" << endl; cerr << "Call timeout!" << endl;