From dbd89929b9517cc531e2042930480e3d786d05b2 Mon Sep 17 00:00:00 2001 From: Benjamin Berg Date: Fri, 25 Jun 2021 10:32:14 +0200 Subject: [PATCH] tests: Increase timeout of umockdev tests The new elanspi driver in particular needs a lot of ioctl's during the test. On a normal machine, this would run quite quickly (less than 5s), however, in busy CI environments this can take longer than 30s, causing timeouts currently. Increase the timeout from 10s to 15s. For CI this means the timeout now is 45s which is hopefully enough. --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index e64ef5e..f208920 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -98,7 +98,7 @@ if get_option('introspection') args: join_paths(meson.current_source_dir(), driver_test), env: driver_envs, suite: ['drivers'], - timeout: 10, + timeout: 15, depends: libfprint_typelib, ) else