libgimp/tests: Bump timeout to 90s (because 60 is not enough on Windows)

This commit is contained in:
Bruno Lopes 2025-04-21 12:27:17 -03:00
parent f158cc2b6e
commit 0fe938939c
No known key found for this signature in database

View file

@ -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