From 735e36e3e9f4a1a4bae233c4fe2fe349d5bde9f1 Mon Sep 17 00:00:00 2001 From: meator Date: Sun, 2 Jun 2024 15:24:06 +0200 Subject: [PATCH] Meson: Extend test timeout Tests can take longer on FreeBSD. --- tests/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index d0e093c..a9d6127 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -46,4 +46,6 @@ else ) endif -test('j4-dmenu-tests', test_exe) +# NotifyKqueue checks for changes every minute. This means that the default timeout +# of 30 seconds is not sufficient on BSDs, because one of the tests uses Notify. +test('j4-dmenu-tests', test_exe, timeout: 90)