On our gcov CI job, the bufferiszero and crypto-tlscredsx509 tests time out occasionally, making the job flaky. Double the timeout on these two tests.
Cc: qemu-sta...@nongnu.org Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2221 Signed-off-by: Peter Maydell <peter.mayd...@linaro.org> --- cc stable just because it probably helps CI reliability there too --- tests/unit/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/meson.build b/tests/unit/meson.build index cae925c1325..30db3c418fa 100644 --- a/tests/unit/meson.build +++ b/tests/unit/meson.build @@ -173,8 +173,9 @@ test_env.set('G_TEST_BUILDDIR', meson.current_build_dir()) slow_tests = { 'test-aio-multithread' : 120, + 'test-bufferiszero': 60, 'test-crypto-block' : 300, - 'test-crypto-tlscredsx509': 45, + 'test-crypto-tlscredsx509': 90, 'test-crypto-tlssession': 45, 'test-replication': 60, } -- 2.34.1