diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2023-12-06 19:57:06 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2023-12-07 18:59:42 +0200 |
commit | 9dc2642d2c9cfac4c738ee46229958f7c7c85a16 (patch) | |
tree | 79a2832d285090b519d1f2016028183c0d7345b6 | |
parent | 2d12e6088e92a39e10ffd1faad0bdc7a88401750 (diff) |
test: log: log_process: 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: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r-- | test/log/log_process.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/log/log_process.cpp b/test/log/log_process.cpp index fb6635cc..1926c560 100644 --- a/test/log/log_process.cpp +++ b/test/log/log_process.cpp @@ -81,7 +81,7 @@ protected: return TestFail; } - timeout.start(200ms); + timeout.start(2s); while (timeout.isRunning()) dispatcher->processEvents(); |