From 3113b5aca09fdee94130709a391f330961c0cd04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sun, 26 Nov 2017 13:20:08 +0100 Subject: [PATCH] test: increase the timeout for hwdb-test This test does a lot of mmap/madvise/unmmap, which is slow under address sanitizer. Just increase the timeout to avoid spurious failure. --- test/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/meson.build b/test/meson.build index 8f0c6ab909..33fa28e3c4 100644 --- a/test/meson.build +++ b/test/meson.build @@ -219,5 +219,6 @@ test('udev-test', if conf.get('ENABLE_HWDB') == 1 hwdb_test_sh = find_program('hwdb-test.sh') test('hwdb-test', - hwdb_test_sh) + hwdb_test_sh, + timeout : 90) endif