diff options
author | Kevin Wolf <kwolf@redhat.com> | 2024-01-25 17:58:03 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2024-01-26 11:25:45 +0100 |
commit | 63b18312d14ac984acaf13c7c55d9baa2d61496e (patch) | |
tree | 1ca3c9e3d1fc5af1b3b5f57965d8ac5f6a8d9efe | |
parent | 85d5d2b255b63a03fbbfebf85eaeb5eb525d5f9c (diff) | |
download | qemu-63b18312d14ac984acaf13c7c55d9baa2d61496e.zip qemu-63b18312d14ac984acaf13c7c55d9baa2d61496e.tar.gz qemu-63b18312d14ac984acaf13c7c55d9baa2d61496e.tar.bz2 |
tests/unit: Bump test-replication timeout to 60 seconds
We're seeing timeouts for this test on CI runs (specifically for
ubuntu-20.04-s390x-all). It doesn't fail consistently, but even the
successful runs take about 27 or 28 seconds, which is not very far from
the 30 seconds timeout.
Bump the timeout a bit to make failure less likely even on this CI host.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Message-ID: <20240125165803.48373-1-kwolf@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r-- | tests/unit/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/meson.build b/tests/unit/meson.build index 0659532..cae925c 100644 --- a/tests/unit/meson.build +++ b/tests/unit/meson.build @@ -175,7 +175,8 @@ slow_tests = { 'test-aio-multithread' : 120, 'test-crypto-block' : 300, 'test-crypto-tlscredsx509': 45, - 'test-crypto-tlssession': 45 + 'test-crypto-tlssession': 45, + 'test-replication': 60, } foreach test_name, extra: tests |