From 0fe938939ce29f94e275c8edc1214afb4dfdfff2 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Mon, 21 Apr 2025 12:27:17 -0300 Subject: [PATCH] libgimp/tests: Bump timeout to 90s (because 60 is not enough on Windows) --- libgimp/tests/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libgimp/tests/meson.build b/libgimp/tests/meson.build index 4475130156..df2df54b82 100644 --- a/libgimp/tests/meson.build +++ b/libgimp/tests/meson.build @@ -33,7 +33,7 @@ foreach test_name : tests args: [ gimp_exe.full_path(), py_test ], env: test_env, suite: ['libgimp', 'python3'], - timeout: 60) + timeout: 90) c_test_name = basename + '.c' c_test = custom_target(c_test_name, @@ -63,5 +63,5 @@ foreach test_name : tests args: [ gimp_exe.full_path(), meson.current_source_dir() / c_test_name, basename ], env: test_env, suite: ['libgimp', 'C'], - timeout: 60) + timeout: 90) endforeach