tests: Raise the timeout on monitor-unit from 1 minute to 5 minutes

The test is huge and on a very fast machine it takes 10 seconds. So in
Debian and Ubuntu builds we're finding a lot of machines/architectures
where it regularly requires more than a minute to complete.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/4340>
This commit is contained in:
Daniel van Vugt 2025-03-18 07:42:33 +00:00 committed by Bruce Leidl
parent 6ee87401d4
commit aa1f2aac98

View File

@ -265,6 +265,7 @@ test_cases += [
{
'name': 'monitor-unit',
'suite': 'backend',
'timeout': 300,
'sources': [ 'monitor-unit-tests.c', ],
'depends': [
test_client,
@ -879,7 +880,7 @@ foreach test_case: test_cases
env: test_env,
depends: test_depends,
is_parallel: false,
timeout: 60,
timeout: test_case.get('timeout', 60),
)
endforeach