2018-04-13 19:08:26 +03:00
|
|
|
# -*- Mode: makefile -*-
|
|
|
|
#
|
|
|
|
# AArch64 specific tweaks
|
|
|
|
|
|
|
|
AARCH64_SRC=$(SRC_PATH)/tests/tcg/aarch64
|
|
|
|
VPATH += $(AARCH64_SRC)
|
|
|
|
|
|
|
|
# we don't build any of the ARM tests
|
|
|
|
AARCH64_TESTS=$(filter-out $(ARM_TESTS), $(TESTS))
|
|
|
|
AARCH64_TESTS+=fcvt
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
AARCH64_TESTS += pauth-1
|
|
|
|
run-pauth-%: QEMU += -cpu max
|
|
|
|
|
|
|
|
TESTS:=$(AARCH64_TESTS)
|