Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Apr 2022 15:08:26 GMT
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 4642a6fac27d - main - Disable building kcov test on powerpcspe
Message-ID:  <202204141508.23EF8QIu076428@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202204141508.23EF8QIu076428>