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