2018-04-13 19:08:26 +03:00
|
|
|
# -*- Mode: makefile -*-
|
|
|
|
#
|
|
|
|
# AArch64 specific tweaks
|
|
|
|
|
2019-08-07 17:35:22 +03:00
|
|
|
ARM_SRC=$(SRC_PATH)/tests/tcg/arm
|
|
|
|
VPATH += $(ARM_SRC)
|
|
|
|
|
2018-04-13 19:08:26 +03:00
|
|
|
AARCH64_SRC=$(SRC_PATH)/tests/tcg/aarch64
|
|
|
|
VPATH += $(AARCH64_SRC)
|
|
|
|
|
2019-09-19 16:18:40 +03:00
|
|
|
# Float-convert Tests
|
2019-08-07 17:35:22 +03:00
|
|
|
AARCH64_TESTS=fcvt
|
2018-04-13 19:08:26 +03:00
|
|
|
|
|
|
|
fcvt: LDFLAGS+=-lm
|
|
|
|
|
|
|
|
run-fcvt: fcvt
|
2018-05-21 12:38:37 +03:00
|
|
|
$(call run-test,$<,$(QEMU) $<, "$< on $(TARGET_NAME)")
|
|
|
|
$(call diff-out,$<,$(AARCH64_SRC)/fcvt.ref)
|
2019-02-05 19:52:39 +03:00
|
|
|
|
2019-09-19 16:18:40 +03:00
|
|
|
# Pauth Tests
|
2020-02-03 12:09:28 +03:00
|
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_ARMV8_3),)
|
2020-01-23 18:22:39 +03:00
|
|
|
AARCH64_TESTS += pauth-1 pauth-2 pauth-4
|
2019-08-07 17:35:22 +03:00
|
|
|
run-pauth-%: QEMU_OPTS += -cpu max
|
2020-01-23 18:22:38 +03:00
|
|
|
pauth-%: CFLAGS += -march=armv8.3-a
|
2020-02-03 12:09:28 +03:00
|
|
|
endif
|
2019-02-05 19:52:39 +03:00
|
|
|
|
2019-09-19 16:18:41 +03:00
|
|
|
# Semihosting smoke test for linux-user
|
|
|
|
AARCH64_TESTS += semihosting
|
|
|
|
run-semihosting: semihosting
|
|
|
|
$(call run-test,$<,$(QEMU) $< 2> $<.err, "$< on $(TARGET_NAME)")
|
|
|
|
|
2019-05-17 19:09:48 +03:00
|
|
|
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 $*")
|
|
|
|
|
2019-12-19 15:13:44 +03:00
|
|
|
AARCH64_TESTS += semiconsole
|
|
|
|
run-semiconsole: semiconsole
|
|
|
|
$(call skip-test, $<, "MANUAL ONLY")
|
|
|
|
|
|
|
|
run-plugin-semiconsole-with-%:
|
|
|
|
$(call skip-test, $<, "MANUAL ONLY")
|
|
|
|
|
2020-03-16 20:21:47 +03:00
|
|
|
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_SVE),)
|
|
|
|
# System Registers Tests
|
|
|
|
AARCH64_TESTS += sysregs
|
|
|
|
sysregs: CFLAGS+=-march=armv8.1-a+sve
|
2020-03-16 20:21:50 +03:00
|
|
|
|
|
|
|
ifneq ($(HAVE_GDB_BIN),)
|
|
|
|
GDB_SCRIPT=$(SRC_PATH)/tests/guest-debug/run-test.py
|
|
|
|
|
|
|
|
AARCH64_TESTS += gdbstub-sysregs
|
|
|
|
|
|
|
|
.PHONY: gdbstub-sysregs
|
|
|
|
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")
|
|
|
|
endif
|
|
|
|
|
2020-03-16 20:21:47 +03:00
|
|
|
endif
|
|
|
|
|
2019-08-07 17:35:22 +03:00
|
|
|
TESTS += $(AARCH64_TESTS)
|