1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Disable building kcov test on powerpcspe

It's also 32-bit and lacks support for the needed atomic operations.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Li-Wen Hsu 2022-04-14 23:03:00 +08:00
parent 7f39937557
commit 4642a6fac2
No known key found for this signature in database
GPG Key ID: 82B261B14D3BC7AF

View File

@ -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