aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2024-03-12 11:08:15 +0000
committerPeter Maydell <peter.maydell@linaro.org>2024-03-19 14:28:19 +0000
commit55f7c6a5f2bd82e1d2d0eac6eee0185ce0451815 (patch)
tree15874e5db77ff020cd01a52e34fa75cfa73b404a /tests
parentddc27d2ad9361a81c2b3800d14143bf420dae172 (diff)
tests: Raise timeouts for bufferiszero and crypto-tlscredsx509
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-stable@nongnu.org Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2221 Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-id: 20240312110815.116992-1-peter.maydell@linaro.org
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/meson.build5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/meson.build b/tests/unit/meson.build
index cae925c132..228a21d03c 100644
--- a/tests/unit/meson.build
+++ b/tests/unit/meson.build
@@ -173,9 +173,10 @@ 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-tlssession': 45,
+ 'test-crypto-tlscredsx509': 90,
+ 'test-crypto-tlssession': 90,
'test-replication': 60,
}