svn commit: r325510 - head/lib/libthr/tests

Warner Losh imp at FreeBSD.org
Tue Nov 7 09:58:42 UTC 2017


Author: imp
Date: Tue Nov  7 09:57:26 2017
New Revision: 325510
URL: https://svnweb.freebsd.org/changeset/base/325510

Log:
  Use MACHINE_CPUARCH in preference MACHINE for userland.
  
  Sponsored by: Netflix

Modified:
  head/lib/libthr/tests/Makefile

Modified: head/lib/libthr/tests/Makefile
==============================================================================
--- head/lib/libthr/tests/Makefile	Tue Nov  7 09:47:54 2017	(r325509)
+++ head/lib/libthr/tests/Makefile	Tue Nov  7 09:57:26 2017	(r325510)
@@ -23,7 +23,7 @@ NETBSD_ATF_TESTS_C+=	sigmask_test
 NETBSD_ATF_TESTS_C+=	sigsuspend_test
 NETBSD_ATF_TESTS_C+=	siglongjmp_test
 NETBSD_ATF_TESTS_C+=	sleep_test
-.if ${MACHINE} != "arm64" # ARM64TODO: Missing makecontext
+.if ${MACHINE_CPUARCH} != "aarch64" # ARM64TODO: Missing makecontext
 NETBSD_ATF_TESTS_C+=	swapcontext_test
 .endif
 NETBSD_ATF_TESTS_C+=	timedmutex_test


More information about the svn-src-head mailing list