diff options
author | Peter Maydell | 2022-11-17 18:25:27 +0100 |
---|---|---|
committer | Alex Bennée | 2022-11-22 10:52:23 +0100 |
commit | 5d25e1e02c5bd297197968668d4351806c65893e (patch) | |
tree | 0f0a789aa13773b35cc106fdb59aaf6ebb1083bd | |
parent | docs/devel: try and improve the language around patch review (diff) | |
download | qemu-5d25e1e02c5bd297197968668d4351806c65893e.tar.gz qemu-5d25e1e02c5bd297197968668d4351806c65893e.tar.xz qemu-5d25e1e02c5bd297197968668d4351806c65893e.zip |
tests/avocado: Raise timeout for boot_linux.py:BootLinuxPPC64.test_pseries_tcg
On my machine, a debug build of QEMU takes about 260 seconds to
complete this test, so with the current timeout value of 180 seconds
it always times out. Double the timeout value to 360 so the test
definitely has enough time to complete.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20221110142901.3832318-1-peter.maydell@linaro.org>
Message-Id: <20221117172532.538149-9-alex.bennee@linaro.org>
-rw-r--r-- | tests/avocado/boot_linux.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/avocado/boot_linux.py b/tests/avocado/boot_linux.py index 32adae6ff6..8c8a63ec2e 100644 --- a/tests/avocado/boot_linux.py +++ b/tests/avocado/boot_linux.py @@ -116,7 +116,7 @@ class BootLinuxPPC64(LinuxTest): :avocado: tags=arch:ppc64 """ - timeout = 180 + timeout = 360 def test_pseries_tcg(self): """ |