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