From ea16e3e1e7c83382d2969a7e993e345e88bc8db8 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Tue, 5 Jun 2018 13:06:06 +0000 Subject: [PATCH] Don't build brk_test on platforms that don't support brk(). X-MFC with: r334626 --- lib/libc/tests/sys/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/libc/tests/sys/Makefile b/lib/libc/tests/sys/Makefile index 3abcb9924ee..0dca1896631 100644 --- a/lib/libc/tests/sys/Makefile +++ b/lib/libc/tests/sys/Makefile @@ -4,7 +4,9 @@ PACKAGE= tests .include +.if ${MACHINE_CPUARCH} != "aarch64" && ${MACHINE_CPUARCH} != "riscv" ATF_TESTS_C+= brk_test +.endif ATF_TESTS_C+= queue_test # TODO: clone, lwp_create, lwp_ctl, posix_fadvise, recvmmsg,