Commit 9577647b95 for qemu.org
commit 9577647b95e3b02435a4f97a8ffacff753e442e5
Author: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>
Date: Wed Sep 23 11:57:24 2026 -0700
tests/tcg/loongarch64/system: deactivate loongarch64-softmmu-memory (hang on aarch64 host)
Created associated issue:
https://gitlab.com/qemu-project/qemu/-/work_items/4567
Link: https://lore.kernel.org/qemu-devel/20260923185725.863311-6-pierrick.bouvier@oss.qualcomm.com
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>
diff --git a/tests/tcg/loongarch64/system/meson.build b/tests/tcg/loongarch64/system/meson.build
index 035dd5f85f..d1ee3986b6 100644
--- a/tests/tcg/loongarch64/system/meson.build
+++ b/tests/tcg/loongarch64/system/meson.build
@@ -24,6 +24,11 @@ foreach t: tcg_tests['multiarch-softmmu']['tests']
new_cflags = cflags
if fs.stem(src) == 'memory'
new_cflags += '-DCHECK_UNALIGNED=0'
+ # TODO: memory test hangs on aarch64 host
+ # https://gitlab.com/qemu-project/qemu/-/work_items/4567
+ if host_machine.cpu_family() == 'aarch64' and 'gdb_test' in setup
+ continue
+ endif
endif
if src not in multi_src
setup += {'cflags': [new_cflags]}