f4a23e1797
This test exercises the gdbstub while runing the sve-iotcl test. I haven't plubmed it into make system as we need a way of verifying if gdb has the right support for SVE. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20200316172155.971-26-alex.bennee@linaro.org>
78 lines
1.9 KiB
Makefile
78 lines
1.9 KiB
Makefile
# -*- Mode: makefile -*-
|
|
#
|
|
# AArch64 specific tweaks
|
|
|
|
ARM_SRC=$(SRC_PATH)/tests/tcg/arm
|
|
VPATH += $(ARM_SRC)
|
|
|
|
AARCH64_SRC=$(SRC_PATH)/tests/tcg/aarch64
|
|
VPATH += $(AARCH64_SRC)
|
|
|
|
# Float-convert Tests
|
|
AARCH64_TESTS=fcvt
|
|
|
|
fcvt: LDFLAGS+=-lm
|
|
|
|
run-fcvt: fcvt
|
|
$(call run-test,$<,$(QEMU) $<, "$< on $(TARGET_NAME)")
|
|
$(call diff-out,$<,$(AARCH64_SRC)/fcvt.ref)
|
|
|
|
# Pauth Tests
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_ARMV8_3),)
|
|
AARCH64_TESTS += pauth-1 pauth-2 pauth-4
|
|
run-pauth-%: QEMU_OPTS += -cpu max
|
|
pauth-%: CFLAGS += -march=armv8.3-a
|
|
endif
|
|
|
|
# Semihosting smoke test for linux-user
|
|
AARCH64_TESTS += semihosting
|
|
run-semihosting: semihosting
|
|
$(call run-test,$<,$(QEMU) $< 2> $<.err, "$< on $(TARGET_NAME)")
|
|
|
|
run-plugin-semihosting-with-%:
|
|
$(call run-test, $@, $(QEMU) $(QEMU_OPTS) \
|
|
-plugin $(PLUGIN_DIR)/$(call extract-plugin,$@) \
|
|
$(call strip-plugin,$<) 2> $<.err, \
|
|
"$< on $(TARGET_NAME) with $*")
|
|
|
|
AARCH64_TESTS += semiconsole
|
|
run-semiconsole: semiconsole
|
|
$(call skip-test, $<, "MANUAL ONLY")
|
|
|
|
run-plugin-semiconsole-with-%:
|
|
$(call skip-test, $<, "MANUAL ONLY")
|
|
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_SVE),)
|
|
# System Registers Tests
|
|
AARCH64_TESTS += sysregs
|
|
sysregs: CFLAGS+=-march=armv8.1-a+sve
|
|
|
|
# SVE ioctl test
|
|
AARCH64_TESTS += sve-ioctls
|
|
sve-ioctls: CFLAGS+=-march=armv8.1-a+sve
|
|
|
|
ifneq ($(HAVE_GDB_BIN),)
|
|
GDB_SCRIPT=$(SRC_PATH)/tests/guest-debug/run-test.py
|
|
|
|
AARCH64_TESTS += gdbstub-sysregs gdbstub-sve-ioctls
|
|
|
|
.PHONY: gdbstub-sysregs gdbstub-sve-ioctls
|
|
run-gdbstub-sysregs: sysregs
|
|
$(call run-test, $@, $(GDB_SCRIPT) \
|
|
--gdb $(HAVE_GDB_BIN) \
|
|
--qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
|
|
--bin $< --test $(AARCH64_SRC)/gdbstub/test-sve.py, \
|
|
"basic gdbstub SVE support")
|
|
|
|
run-gdbstub-sve-ioctls: sve-ioctls
|
|
$(call run-test, $@, $(GDB_SCRIPT) \
|
|
--gdb $(HAVE_GDB_BIN) \
|
|
--qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
|
|
--bin $< --test $(AARCH64_SRC)/gdbstub/test-sve-ioctl.py, \
|
|
"basic gdbstub SVE ZLEN support")
|
|
endif
|
|
|
|
endif
|
|
|
|
TESTS += $(AARCH64_TESTS)
|