From b66b3c409900a77b3da7b366ae5a0179abacea99 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Fri, 3 Mar 2023 13:22:27 +0900 Subject: [PATCH] meson: extend timeout for test-time-util The test forks so many child processes, and may hit the default time limit on slow environment or running with sanitizers. --- src/test/meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/test/meson.build b/src/test/meson.build index dc9e95a7bd..ae4c3f13aa 100644 --- a/src/test/meson.build +++ b/src/test/meson.build @@ -156,7 +156,6 @@ simple_tests += files( 'test-strxcpyx.c', 'test-sysctl-util.c', 'test-terminal-util.c', - 'test-time-util.c', 'test-tmpfile-util.c', 'test-tmpfiles.c', 'test-tpm2.c', @@ -501,6 +500,10 @@ tests += [ udev_includes, ], }, + { + 'sources' : files('test-time-util.c'), + 'timeout' : 120, + }, { 'sources' : files('test-udev.c'), 'link_with' : [ -- 2.25.1