From a60376594d8caafbf298f6dae738fff596d1a883 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 20 Jun 2019 08:40:42 +0100 Subject: [PATCH] build: Increase the slow test timeout to 180s MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We are still seeing occasional CI failures due to timeouts when heavily loaded. It’s best to wait a little longer than to throw all the results out when they’re almost done. For example, see https://gitlab.gnome.org/tristan957/glib/-/jobs/331330. Signed-off-by: Philip Withnall --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index b85ff7661..232cd6c87 100644 --- a/meson.build +++ b/meson.build @@ -2037,7 +2037,7 @@ if want_systemtap and enable_dtrace endif test_timeout = 60 -test_timeout_slow = 120 +test_timeout_slow = 180 pkg = import('pkgconfig') windows = import('windows')