summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrantisek Sumsal <frantisek@sumsal.cz>2019-01-18 22:32:42 +0100
committerThe Plumber <50238977+systemd-rhel-bot@users.noreply.github.com>2021-07-22 14:18:33 +0200
commit998041fbb2b4114f2f1df604cdebc4afbf682d63 (patch)
tree0639e19d80048a98657458ab888de27fb530111a
parent68555d26da9e46efbd70703b39a81cee601d265a (diff)
downloadsystemd-998041fbb2b4114f2f1df604cdebc4afbf682d63.tar.gz
meson: bump timeout for test-udev to 180sv239-49
On some (mainly virtual) machines the last test takes more than 30 seconds, which causes unnecessary fails, as the test itself is working properly. (cherry picked from commit bb0e960448fce037f5b82b1829863da8ccbe636b) Related: #1934504
-rw-r--r--test/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/meson.build b/test/meson.build
index 52e4fa2e3c..535354f3ab 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -246,7 +246,8 @@ custom_target(
if perl.found()
udev_test_pl = find_program('udev-test.pl')
test('udev-test',
- udev_test_pl)
+ udev_test_pl,
+ timeout : 180)
else
message('Skipping udev-test because perl is not available')
endif