diff options
author | Thomas Huth <thuth@redhat.com> | 2024-10-02 16:02:12 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-10-07 13:21:41 +0200 |
commit | d841f720c98475c0f67695d99f27794bde69ed6e (patch) | |
tree | cb29e76c0d218e0080476ded3a9fcfb7e635aa9e | |
parent | 67d76bde994799c8a01ea7ad248b4d963aeb4db1 (diff) | |
download | qemu-d841f720c98475c0f67695d99f27794bde69ed6e.zip qemu-d841f720c98475c0f67695d99f27794bde69ed6e.tar.gz qemu-d841f720c98475c0f67695d99f27794bde69ed6e.tar.bz2 |
tests/functional: Bump timeout of some tests
These tests occasionally time out when the host system is under heavy
load. Increase the timeout setting to allow for more headroom here.
Message-ID: <20241002140212.350467-1-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | tests/functional/meson.build | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/functional/meson.build b/tests/functional/meson.build index 7713f8e..c90c025 100644 --- a/tests/functional/meson.build +++ b/tests/functional/meson.build @@ -11,15 +11,18 @@ endif # Timeouts for individual tests that can be slow e.g. with debugging enabled test_timeouts = { + 'aarch64_raspi4' : 120, 'aarch64_sbsaref' : 600, 'aarch64_virt' : 360, 'acpi_bits' : 240, + 'arm_raspi2' : 120, + 'mips_malta' : 120, 'netdev_ethtool' : 180, 'ppc_40p' : 240, 'ppc64_hv' : 1000, - 'ppc64_powernv' : 120, - 'ppc64_pseries' : 120, - 's390x_ccw_virtio' : 180, + 'ppc64_powernv' : 240, + 'ppc64_pseries' : 240, + 's390x_ccw_virtio' : 240, } tests_generic_system = [ |