git: 15ebbf9033c3 - stable/13 - tests: Fix build on mips after 33d7da6b
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 27 Aug 2023 17:52:09 UTC
The branch stable/13 has been updated by dchagin:
URL: https://cgit.FreeBSD.org/src/commit/?id=15ebbf9033c3f4754822206282468ffa3f6642bb
commit 15ebbf9033c3f4754822206282468ffa3f6642bb
Author: Dmitry Chagin <dchagin@FreeBSD.org>
AuthorDate: 2023-08-27 17:51:49 +0000
Commit: Dmitry Chagin <dchagin@FreeBSD.org>
CommitDate: 2023-08-27 17:51:49 +0000
tests: Fix build on mips after 33d7da6b
---
tests/sys/vm/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/sys/vm/Makefile b/tests/sys/vm/Makefile
index b8412079ddb0..3cb3f78fae28 100644
--- a/tests/sys/vm/Makefile
+++ b/tests/sys/vm/Makefile
@@ -8,7 +8,7 @@ ATF_TESTS_C+= mlock_test \
page_fault_signal \
shared_shadow_inval_test
-.if ${MACHINE_ARCH} != "i386" && ${MACHINE} != "arm" && \
+.if ${MACHINE_ARCH} != "i386" && ${MACHINE} != "arm" && ${MACHINE} != "mips" && \
(${MACHINE} != "powerpc" || (${MACHINE_ARCH} != "powerpc" && \
${MACHINE_ARCH} != "powerpcspe"))
# MAP_32BIT is only available on 64-bit platforms