aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/ppc64le/Makefile.target
blob: 5e65b1590dba7fd11ce60c96ac6689780a2b68a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- Mode: makefile -*-
#
# ppc64le specific tweaks

VPATH += $(SRC_PATH)/tests/tcg/ppc64le

ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_POWER8_VECTOR),)
PPC64LE_TESTS=bcdsub
endif
bcdsub: CFLAGS += -mpower8-vector

PPC64LE_TESTS += byte_reverse
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_POWER10),)
run-byte_reverse: QEMU_OPTS+=-cpu POWER10
run-plugin-byte_reverse-with-%: QEMU_OPTS+=-cpu POWER10
else
byte_reverse:
	$(call skip-test, "BUILD of $@", "missing compiler support")
run-byte_reverse:
	$(call skip-test, "RUN of byte_reverse", "not built")
run-plugin-byte_reverse-with-%:
	$(call skip-test, "RUN of byte_reverse ($*)", "not built")
endif

PPC64LE_TESTS += signal_save_restore_xer

TESTS += $(PPC64LE_TESTS)