647aee9ba2
Test that 32-bit instructions declared UNDEFINED in the ARMv6-M Reference Manual really do raise an exception. Also test that the 6 32-bit instructions defined in the ARMv6-M Reference Manual do not raise an exception. Based-on: <20181029194519.15628-1-stefanha@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Message-Id: <20181129185113.30353-1-stefanha@redhat.com> [AJB: integrated into system tests] Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
30 lines
568 B
Makefile
30 lines
568 B
Makefile
# -*- Mode: makefile -*-
|
|
#
|
|
# ARM SoftMMU tests - included from tests/tcg/Makefile
|
|
#
|
|
|
|
ifeq ($(TARGET_ABI_DIR),arm)
|
|
|
|
ARM_SRC=$(SRC_PATH)/tests/tcg/arm
|
|
|
|
# Set search path for all sources
|
|
VPATH += $(ARM_SRC)
|
|
|
|
ARM_TESTS=test-armv6m-undef
|
|
|
|
TESTS += $(ARM_TESTS)
|
|
|
|
CFLAGS+=-Wl,--build-id=none -x assembler-with-cpp
|
|
LDFLAGS+=-nostdlib -N -static
|
|
|
|
%: %.S %.ld
|
|
$(CC) $(CFLAGS) $(ASFLAGS) $< -o $@ $(LDFLAGS) -T $(ARM_SRC)/$@.ld
|
|
|
|
# Specific Test Rules
|
|
|
|
test-armv6m-undef: EXTRA_CFLAGS+=-mcpu=cortex-m0
|
|
|
|
run-test-armv6m-undef: QEMU_OPTS+=-semihosting -M microbit -kernel
|
|
|
|
endif
|