git: 9bd46f48da32 - stable/13 - Disable subr_physmem_test on mips
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 03 May 2022 15:53:04 UTC
The branch stable/13 has been updated by andrew: URL: https://cgit.FreeBSD.org/src/commit/?id=9bd46f48da329fd608b4ccb604b2fe1c3a50a286 commit 9bd46f48da329fd608b4ccb604b2fe1c3a50a286 Author: Andrew Turner <andrew@FreeBSD.org> AuthorDate: 2022-05-03 15:47:33 +0000 Commit: Andrew Turner <andrew@FreeBSD.org> CommitDate: 2022-05-03 15:51:57 +0000 Disable subr_physmem_test on mips It doesn't build. Direct commit as mips doesn't exist in 14. 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 77e514e9e747..753104c3b084 100644 --- a/tests/sys/kern/Makefile +++ b/tests/sys/kern/Makefile @@ -22,7 +22,8 @@ ATF_TESTS_C+= ptrace_test TEST_METADATA.ptrace_test+= timeout="15" ATF_TESTS_C+= reaper ATF_TESTS_C+= sigaltstack -.if ${MACHINE_ARCH} != "i386" && ${MACHINE_ARCH:Mpowerpc*} == "" +.if ${MACHINE_ARCH} != "i386" && ${MACHINE_ARCH:Mpowerpc*} == "" && \ + ${MACHINE_CPUARCH} != "mips" ATF_TESTS_C+= subr_physmem_test .endif PLAIN_TESTS_C+= subr_unit_test