mirror of
https://github.com/qemu/qemu.git
synced 2024-11-30 23:33:51 +08:00
e902126cae
Add a number of small test that check whether accessing unaligned addresses in various ways leads to a specification exception. Run these test both in softmmu and user configurations; expect a PGM in one case and SIGILL in the other. Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20230316164428.275147-13-iii@linux.ibm.com> [thuth: Added -Wl,--build-id=none to LDFLAGS] Signed-off-by: Thomas Huth <thuth@redhat.com>
16 lines
348 B
Makefile
16 lines
348 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# List of specification exception tests.
|
|
# Shared between the softmmu and the user makefiles.
|
|
PGM_SPECIFICATION_TESTS = \
|
|
br-odd \
|
|
cgrl-unaligned \
|
|
clrl-unaligned \
|
|
crl-unaligned \
|
|
ex-odd \
|
|
lgrl-unaligned \
|
|
llgfrl-unaligned \
|
|
lpswe-unaligned \
|
|
lrl-unaligned \
|
|
stgrl-unaligned \
|
|
strl-unaligned
|