From 7b750972e8a1951f2037e8cb004ae508b8a3e33c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Fri, 30 Jun 2023 16:26:09 +0200 Subject: [PATCH] meson/gio: Increase timeout for the codegen python tests It's adding more stuff, let's ensure it wont timeout for no reason in some platforms. As per this mark also it as 'slow' --- gio/tests/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gio/tests/meson.build b/gio/tests/meson.build index c1240b527..8d9c87c20 100644 --- a/gio/tests/meson.build +++ b/gio/tests/meson.build @@ -172,7 +172,8 @@ python_tests = { # FIXME: https://gitlab.gnome.org/GNOME/glib/-/issues/2764 'codegen.py' : { 'can_fail' : host_system == 'freebsd', - 'suite': ['gdbus-codegen'], + 'suite': ['gdbus-codegen', 'slow'], + 'timeout': 90, }, } @@ -1068,6 +1069,7 @@ foreach test_name, extra_args : python_tests depends: depends, args: ['-B', files(test_name)], env: test_env, + timeout: extra_args.get('timeout'), suite: suite, )