tests: Raise timeouts for bufferiszero and crypto-tlscredsx509
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 12 Mar 2024 11:08:15 +0000 (11:08 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 19 Mar 2024 14:28:19 +0000 (14:28 +0000)
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

tests/unit/meson.build

index cae925c1325991e26943f578e24962e4227ff137..228a21d03c2bb609da8b401873f67ce1fcb9afbc 100644 (file)
@@ -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,
 }