diff options
author | andrew <andrew@FreeBSD.org> | 2015-04-27 13:56:20 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2015-04-27 13:56:20 +0000 |
commit | d2f646661f9aa63fa7fe77703c1152ca9b795f1c (patch) | |
tree | cb3ddcdd2ba989d6391eec085c6dc0a3ff6e6b81 /lib/libc | |
parent | 08fe3b61a6b4247c5060725079f909afc46b1a18 (diff) | |
download | FreeBSD-src-d2f646661f9aa63fa7fe77703c1152ca9b795f1c.zip FreeBSD-src-d2f646661f9aa63fa7fe77703c1152ca9b795f1c.tar.gz |
Disable the tests that use makecontext on arm64, it still needs to be
written.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/tests/sys/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/tests/sys/Makefile b/lib/libc/tests/sys/Makefile index 89431bc..5e457fd 100644 --- a/lib/libc/tests/sys/Makefile +++ b/lib/libc/tests/sys/Makefile @@ -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 |