TEST-21-DFUZZER: Give higher priority

This test takes a long time to run. Let's make sure it is started
first to avoid it being the only test running for a long time at the
end.
This commit is contained in:
Daan De Meyer 2024-05-05 13:29:54 +02:00
parent ca72b8f6f8
commit ae25df53bf
2 changed files with 3 additions and 0 deletions

View file

@ -2,4 +2,5 @@
test_params = test_params + {
'timeout' : 3600,
'priority': -50,
}

View file

@ -413,6 +413,7 @@ foreach test_number, dirname : integration_tests
'mkosi_args' : [],
'timeout' : 1800,
'storage' : 'volatile',
'priority' : 0,
}
# TODO: This fs.exists call isn't included in rebuild logic
@ -445,5 +446,6 @@ foreach test_number, dirname : integration_tests
env : integration_test_env,
args : args,
timeout : test_params['timeout'],
priority : test_params['priority'],
suite : 'integration-tests')
endforeach