svn commit: r334653 - head/lib/libc/tests/sys

Mark Johnston markj at FreeBSD.org
Tue Jun 5 13:06:07 UTC 2018


Author: markj
Date: Tue Jun  5 13:06:06 2018
New Revision: 334653
URL: https://svnweb.freebsd.org/changeset/base/334653

Log:
  Don't build brk_test on platforms that don't support brk().
  
  X-MFC with:	r334626

Modified:
  head/lib/libc/tests/sys/Makefile

Modified: head/lib/libc/tests/sys/Makefile
==============================================================================
--- head/lib/libc/tests/sys/Makefile	Tue Jun  5 12:00:55 2018	(r334652)
+++ head/lib/libc/tests/sys/Makefile	Tue Jun  5 13:06:06 2018	(r334653)
@@ -4,7 +4,9 @@ PACKAGE=			tests
 
 .include <bsd.own.mk>
 
+.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,


More information about the svn-src-all mailing list