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/libthr/tests | |
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/libthr/tests')
-rw-r--r-- | lib/libthr/tests/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libthr/tests/Makefile b/lib/libthr/tests/Makefile index 50f07f0..11cf0e7 100644 --- a/lib/libthr/tests/Makefile +++ b/lib/libthr/tests/Makefile @@ -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 |