Skip to content

Commit bd20bc4

Browse files
philmdrth7680
authored andcommitted
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é <[email protected]> Acked-by: Michael S. Tsirkin <[email protected]> Acked-by: Richard Henderson <[email protected]> Signed-off-by: Richard Henderson <[email protected]> Message-ID: <[email protected]>
1 parent 00f119f commit bd20bc4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/functional/test_aarch64_replay.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# SPDX-License-Identifier: GPL-2.0-or-later
77

8-
from qemu_test import Asset
8+
from qemu_test import Asset, skipIfOperatingSystem
99
from replay_kernel import ReplayKernelBase
1010

1111

@@ -16,6 +16,8 @@ class Aarch64Replay(ReplayKernelBase):
1616
'releases/29/Everything/aarch64/os/images/pxeboot/vmlinuz'),
1717
'7e1430b81c26bdd0da025eeb8fbd77b5dc961da4364af26e771bd39f379cbbf7')
1818

19+
# Failing on Darwin: https://gitlab.com/qemu-project/qemu/-/issues/2907
20+
@skipIfOperatingSystem('Darwin')
1921
def test_aarch64_virt(self):
2022
self.set_machine('virt')
2123
self.cpu = 'cortex-a53'

0 commit comments

Comments
 (0)