xref: /qemu/tests/tcg/aarch64/Makefile.target (revision dc5e9ac7)
1# -*- Mode: makefile -*-
2#
3# AArch64 specific tweaks
4
5AARCH64_SRC=$(SRC_PATH)/tests/tcg/aarch64
6VPATH 		+= $(AARCH64_SRC)
7
8# we don't build any of the ARM tests
9AARCH64_TESTS=$(filter-out $(ARM_TESTS), $(TESTS))
10AARCH64_TESTS+=fcvt
11
12fcvt: LDFLAGS+=-lm
13
14run-fcvt: fcvt
15	$(call run-test,$<,$(QEMU) $<, "$< on $(TARGET_NAME)")
16	$(call diff-out,$<,$(AARCH64_SRC)/fcvt.ref)
17
18AARCH64_TESTS += pauth-1 pauth-2
19run-pauth-%: QEMU += -cpu max
20
21TESTS:=$(AARCH64_TESTS)
22