svn commit: r282091 - in head/lib: libc/tests/sys libthr/tests

Andrew Turner andrew at FreeBSD.org
Mon Apr 27 13:56:22 UTC 2015


Author: andrew
Date: Mon Apr 27 13:56:20 2015
New Revision: 282091
URL: https://svnweb.freebsd.org/changeset/base/282091

Log:
  Disable the tests that use makecontext on arm64, it still needs to be
  written.

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

Modified: head/lib/libc/tests/sys/Makefile
==============================================================================
--- head/lib/libc/tests/sys/Makefile	Mon Apr 27 12:54:04 2015	(r282090)
+++ head/lib/libc/tests/sys/Makefile	Mon Apr 27 13:56:20 2015	(r282091)
@@ -12,7 +12,9 @@ NETBSD_ATF_TESTS_C+=		clock_gettime_test
 NETBSD_ATF_TESTS_C+=		connect_test
 NETBSD_ATF_TESTS_C+=		dup_test
 NETBSD_ATF_TESTS_C+=		fsync_test
+.if ${MACHINE} != "arm64" # ARM64TODO: Missing makecontext
 NETBSD_ATF_TESTS_C+=		getcontext_test
+.endif
 NETBSD_ATF_TESTS_C+=		getgroups_test
 NETBSD_ATF_TESTS_C+=		getitimer_test
 NETBSD_ATF_TESTS_C+=		getlogin_test

Modified: head/lib/libthr/tests/Makefile
==============================================================================
--- head/lib/libthr/tests/Makefile	Mon Apr 27 12:54:04 2015	(r282090)
+++ head/lib/libthr/tests/Makefile	Mon Apr 27 13:56:20 2015	(r282091)
@@ -25,7 +25,9 @@ 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
 NETBSD_ATF_TESTS_C+=	swapcontext_test
+.endif
 
 NETBSD_ATF_TESTS_SH=	atexit_test
 NETBSD_ATF_TESTS_SH+=	cancel_test


More information about the svn-src-all mailing list