From b231322dbe9559c2dc43698c3bb1e832cd8bbfa9 Mon Sep 17 00:00:00 2001 From: Li-Wen Hsu Date: Sat, 12 Aug 2023 09:24:15 +0800 Subject: [PATCH] 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