[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 10/18] tests/tcg/ppc64: clean-up handling of byte-reverse
From: |
Alex Bennée |
Subject: |
[PATCH v2 10/18] tests/tcg/ppc64: clean-up handling of byte-reverse |
Date: |
Fri, 25 Feb 2022 17:20:13 +0000 |
Rather than having an else leg for the missing compiler case we can
simply just not add the test - the same way as is done for ppc64le.
Also while we are at it fix up the compiler invocation.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
tests/tcg/ppc64/Makefile.target | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/tests/tcg/ppc64/Makefile.target b/tests/tcg/ppc64/Makefile.target
index 0368007028..9d6dfc1e26 100644
--- a/tests/tcg/ppc64/Makefile.target
+++ b/tests/tcg/ppc64/Makefile.target
@@ -10,19 +10,14 @@ PPC64_TESTS=bcdsub non_signalling_xscv
endif
$(PPC64_TESTS): CFLAGS += -mpower8-vector
-PPC64_TESTS += byte_reverse
PPC64_TESTS += mtfsf
+
ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_POWER10),)
+PPC64_TESTS += byte_reverse
+endif
+byte_reverse: CFLAGS += -mcpu=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
PPC64_TESTS += signal_save_restore_xer
--
2.30.2
- [PATCH v2 00/18] testing and semihosting pre-PR, Alex Bennée, 2022/02/25
- [PATCH v2 02/18] tests/docker: add NOUSER for alpine image, Alex Bennée, 2022/02/25
- [PATCH v2 04/18] tests/docker: update debian-arm64-cross with lci-tool, Alex Bennée, 2022/02/25
- [PATCH v2 01/18] tests/docker: restore TESTS/IMAGES filtering, Alex Bennée, 2022/02/25
- [PATCH v2 10/18] tests/tcg/ppc64: clean-up handling of byte-reverse,
Alex Bennée <=
- [PATCH v2 05/18] tests/docker: update debian-s390x-cross with lcitool, Alex Bennée, 2022/02/25
- [PATCH v2 06/18] tests/docker: introduce debian-riscv64-test-cross, Alex Bennée, 2022/02/25
- [PATCH v2 09/18] gitlab: add a new aarch32 custom runner definition, Alex Bennée, 2022/02/25
- [PATCH v2 07/18] scripts/ci: add build env rules for aarch32 on aarch64, Alex Bennée, 2022/02/25
- [PATCH v2 08/18] scripts/ci: allow for a secondary runner, Alex Bennée, 2022/02/25