git: 4642a6fac27d - main - Disable building kcov test on powerpcspe
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 14 Apr 2022 15:08:26 UTC
The branch main has been updated by lwhsu:
URL: https://cgit.FreeBSD.org/src/commit/?id=4642a6fac27dec23a97ad15d247515b8fba30ae6
commit 4642a6fac27dec23a97ad15d247515b8fba30ae6
Author: Li-Wen Hsu <lwhsu@FreeBSD.org>
AuthorDate: 2022-04-14 15:03:00 +0000
Commit: Li-Wen Hsu <lwhsu@FreeBSD.org>
CommitDate: 2022-04-14 15:03:00 +0000
Disable building kcov test on powerpcspe
It's also 32-bit and lacks support for the needed atomic operations.
Sponsored by: The FreeBSD Foundation
---
tests/sys/kern/Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/sys/kern/Makefile b/tests/sys/kern/Makefile
index 0a422f42cdd3..120567d32347 100644
--- a/tests/sys/kern/Makefile
+++ b/tests/sys/kern/Makefile
@@ -10,7 +10,8 @@ TESTSRC= ${SRCTOP}/contrib/netbsd-tests/kernel
TESTSDIR= ${TESTSBASE}/sys/kern
ATF_TESTS_C+= basic_signal
-.if ${MACHINE_ARCH} != "i386" && ${MACHINE_ARCH} != "powerpc"
+.if ${MACHINE_ARCH} != "i386" && ${MACHINE_ARCH} != "powerpc" && \
+ ${MACHINE_ARCH} != "powerpcspe"
# No support for atomic_load_64 on i386 or (32-bit) powerpc
ATF_TESTS_C+= kcov
.endif