diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2024-11-29 17:30:59 +0000 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-12-02 14:53:40 +0100 |
commit | 92ee59bf56ba42954166e56ab112afe10f3c7556 (patch) | |
tree | ba9009ee730ce84dead46557402db47a562e8243 | |
parent | c78ba4341c69635ca864c39ed9c29e10e7fdd901 (diff) | |
download | qemu-92ee59bf56ba42954166e56ab112afe10f3c7556.zip qemu-92ee59bf56ba42954166e56ab112afe10f3c7556.tar.gz qemu-92ee59bf56ba42954166e56ab112afe10f3c7556.tar.bz2 |
tests/functional: increase timeouts for arm sx1 test
When under high load the test VM does not complete running in the
default 30 second timeout. Double it to give more headroom.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Message-ID: <20241129173120.761728-2-berrange@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rwxr-xr-x | tests/functional/test_arm_sx1.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/functional/test_arm_sx1.py b/tests/functional/test_arm_sx1.py index 2d86405..2292317 100755 --- a/tests/functional/test_arm_sx1.py +++ b/tests/functional/test_arm_sx1.py @@ -44,7 +44,7 @@ class SX1Test(LinuxKernelTest): self.vm.add_args('-no-reboot') self.launch_kernel(zimage_path, initrd=initrd_path) - self.vm.wait() + self.vm.wait(timeout=60) def test_arm_sx1_sd(self): self.set_machine('sx1') @@ -55,7 +55,7 @@ class SX1Test(LinuxKernelTest): self.vm.add_args('-snapshot') self.vm.add_args('-drive', f'format=raw,if=sd,file={sd_fs_path}') self.launch_kernel(zimage_path) - self.vm.wait() + self.vm.wait(timeout=60) def test_arm_sx1_flash(self): self.set_machine('sx1') @@ -66,7 +66,7 @@ class SX1Test(LinuxKernelTest): self.vm.add_args('-snapshot') self.vm.add_args('-drive', f'format=raw,if=pflash,file={flash_path}') self.launch_kernel(zimage_path) - self.vm.wait() + self.vm.wait(timeout=60) if __name__ == '__main__': LinuxKernelTest.main() |