git: b231322dbe95 - main - tests: Also exclude powerpc/powerpcspe from mmap_map_32bit_test
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 12 Aug 2023 01:25:10 UTC
The branch main has been updated by lwhsu: URL: https://cgit.FreeBSD.org/src/commit/?id=b231322dbe9559c2dc43698c3bb1e832cd8bbfa9 commit b231322dbe9559c2dc43698c3bb1e832cd8bbfa9 Author: Li-Wen Hsu <lwhsu@FreeBSD.org> AuthorDate: 2023-08-12 01:24:15 +0000 Commit: Li-Wen Hsu <lwhsu@FreeBSD.org> CommitDate: 2023-08-12 01:24:15 +0000 tests: Also exclude powerpc/powerpcspe from mmap_map_32bit_test Sponsored by: The FreeBSD Foundation --- tests/sys/vm/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/sys/vm/Makefile b/tests/sys/vm/Makefile index 5517bbcbd108..c460ba9d8db7 100644 --- a/tests/sys/vm/Makefile +++ b/tests/sys/vm/Makefile @@ -10,7 +10,8 @@ ATF_TESTS_C+= mlock_test \ shared_shadow_inval_test .if ${MACHINE_ARCH} != "i386" && ${MACHINE} != "arm" && \ - (${MACHINE} != "powerpc" || ${MACHINE_ARCH} != "powerpc") + (${MACHINE} != "powerpc" || (${MACHINE_ARCH} != "powerpc" && \ + ${MACHINE_ARCH} != "powerpcspe")) # MAP_32BIT is only available on 64-bit platforms BINDIR= ${TESTSDIR} ATF_TESTS_SH+= mmap_map_32bit_test