summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRadoslav Kolev <radoslav.kolev@suse.com>2024-05-14 09:39:29 +0200
committerDaan De Meyer <daan.j.demeyer@gmail.com>2024-05-14 11:34:22 +0200
commit381c3b64d0a80ccda2ccb0dda6fe825878a6e150 (patch)
treebfdac2c2db73af89c827bc1b647e6cd301bc9ca0
parentman: fix typo (diff)
downloadsystemd-381c3b64d0a80ccda2ccb0dda6fe825878a6e150.tar.xz
systemd-381c3b64d0a80ccda2ccb0dda6fe825878a6e150.zip
sd-event: increase test-event timeout to 120s
The test-event test seems to be taking quite a bit more time than the other 'simple tests', which usually complete in < 1s. In case of a slower or loaded machine the default 30s timeout is not enough.
Diffstat (limited to '')
-rw-r--r--src/libsystemd/meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libsystemd/meson.build b/src/libsystemd/meson.build
index 817e3a5e09..6d4337d1a7 100644
--- a/src/libsystemd/meson.build
+++ b/src/libsystemd/meson.build
@@ -158,6 +158,10 @@ libsystemd_tests += [
'sources' : files('sd-journal/test-journal-enum.c'),
'timeout' : 360,
},
+ {
+ 'sources' : files('sd-event/test-event.c'),
+ 'timeout' : 120,
+ }
]
############################################################
@@ -170,7 +174,6 @@ simple_tests += files(
'sd-device/test-device-util.c',
'sd-device/test-sd-device-monitor.c',
'sd-device/test-sd-device.c',
- 'sd-event/test-event.c',
'sd-journal/test-journal-flush.c',
'sd-journal/test-journal-interleaving.c',
'sd-journal/test-journal-stream.c',