diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-04-03 22:32:39 +0200 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-03 16:11:09 -0700 |
| commit | bd20bc46fe88e6ade710b688e97515d4ed9d1d50 (patch) | |
| tree | 367a3c0cddf37e62cd582cc5991668a62c956385 | |
| parent | 00f119f4c4f776e5e36e8ea99bb3ff865cc52c09 (diff) | |
| download | focaccia-qemu-bd20bc46fe88e6ade710b688e97515d4ed9d1d50.tar.gz focaccia-qemu-bd20bc46fe88e6ade710b688e97515d4ed9d1d50.zip | |
tests/functional: Skip aarch64_replay test on macOS
As of v10.0.0-rc2 this test is still failing on macos: $ make check-functional-aarch64 V=1 ... ERROR:../../replay/replay-internal.c:235:replay_mutex_unlock: assertion failed: (replay_mutex_locked()) Bail out! ERROR:../../replay/replay-internal.c:235:replay_mutex_unlock: assertion failed: (replay_mutex_locked()) This is tracked as https://gitlab.com/qemu-project/qemu/-/issues/2907 Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Acked-by: Michael S. Tsirkin <mst@redhat.com> Acked-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-ID: <20250403203241.46692-4-philmd@linaro.org>
| -rwxr-xr-x | tests/functional/test_aarch64_replay.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/functional/test_aarch64_replay.py b/tests/functional/test_aarch64_replay.py index 04cde433bc..029fef3cbf 100755 --- a/tests/functional/test_aarch64_replay.py +++ b/tests/functional/test_aarch64_replay.py @@ -5,7 +5,7 @@ # # SPDX-License-Identifier: GPL-2.0-or-later -from qemu_test import Asset +from qemu_test import Asset, skipIfOperatingSystem from replay_kernel import ReplayKernelBase @@ -16,6 +16,8 @@ class Aarch64Replay(ReplayKernelBase): 'releases/29/Everything/aarch64/os/images/pxeboot/vmlinuz'), '7e1430b81c26bdd0da025eeb8fbd77b5dc961da4364af26e771bd39f379cbbf7') + # Failing on Darwin: https://gitlab.com/qemu-project/qemu/-/issues/2907 + @skipIfOperatingSystem('Darwin') def test_aarch64_virt(self): self.set_machine('virt') self.cpu = 'cortex-a53' |