diff options
author | Nicholas Piggin <npiggin@gmail.com> | 2024-08-06 09:28:13 +1000 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-08-20 00:49:14 +0200 |
commit | 8e540bbe4567745dab310d620aefd7163e74cd93 (patch) | |
tree | 4c13cbd8223a2f6e172e104027ee9e6f8311afe8 | |
parent | 4a85f23157f7ff766608c1373b71a97513215257 (diff) | |
download | qemu-8e540bbe4567745dab310d620aefd7163e74cd93.zip qemu-8e540bbe4567745dab310d620aefd7163e74cd93.tar.gz qemu-8e540bbe4567745dab310d620aefd7163e74cd93.tar.bz2 |
tests/avocado: Mark ppc_hv_tests.py as non-flaky after fixed console interaction
Now that exec_command doesn't incorrectly consume console output,
and guest time is set correctly, ppc_hv_tests.py is working more
reliably. Try marking it non-flaky.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Message-ID: <20240805232814.267843-3-npiggin@gmail.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
-rw-r--r-- | tests/avocado/ppc_hv_tests.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/avocado/ppc_hv_tests.py b/tests/avocado/ppc_hv_tests.py index bf8822b..0e83bba 100644 --- a/tests/avocado/ppc_hv_tests.py +++ b/tests/avocado/ppc_hv_tests.py @@ -45,7 +45,6 @@ def missing_deps(): # QEMU already installed and use that. # XXX: The order of these tests seems to matter, see git blame. @skipIf(missing_deps(), 'dependencies (%s) not installed' % ','.join(deps)) -@skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test sometimes gets stuck due to console handling problem') @skipUnless(os.getenv('AVOCADO_ALLOW_LARGE_STORAGE'), 'storage limited') @skipUnless(os.getenv('SPEED') == 'slow', 'runtime limited') class HypervisorTest(QemuSystemTest): |