diff options
| author | Thomas Huth <thuth@redhat.com> | 2023-11-14 16:30:19 +0100 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2023-11-16 07:13:41 +0100 |
| commit | 3365f3d99ae3aa3248209bc84c229ec01b5c5b21 (patch) | |
| tree | 85d2dd54390eecef1ee382c79ce3f7b68d6e874c | |
| parent | 9d72dd100ced090f7708b2189a8ef4e855ac3314 (diff) | |
| download | focaccia-qemu-3365f3d99ae3aa3248209bc84c229ec01b5c5b21.tar.gz focaccia-qemu-3365f3d99ae3aa3248209bc84c229ec01b5c5b21.zip | |
tests/avocado/replay_kernel: Mark the test_x86_64_pc as flaky
It's failing very often, so don't run this by default anymore until it gets fixed. Message-ID: <20231114153019.295131-1-thuth@redhat.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
| -rw-r--r-- | tests/avocado/replay_kernel.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/avocado/replay_kernel.py b/tests/avocado/replay_kernel.py index a18610542e..53cb7e5091 100644 --- a/tests/avocado/replay_kernel.py +++ b/tests/avocado/replay_kernel.py @@ -81,7 +81,8 @@ class ReplayKernelBase(LinuxKernelTest): logger.info('replay overhead {:.2%}'.format(t2 / t1 - 1)) class ReplayKernelNormal(ReplayKernelBase): - @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab') + + @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test sometimes gets stuck') def test_x86_64_pc(self): """ :avocado: tags=arch:x86_64 |