tests: move the memfd tests over to sys/posixshm

memfd_create is implemented on top of posixshm, so this is a logically
correct place for them to be. Moreover, this reduces the number of places to
look to run tests when working in this part of the tree.

Discussed with:	kib (to some extent, a while ago)
This commit is contained in:
Kyle Evans 2020-09-23 19:54:59 +00:00
parent 114484b7ec
commit 93900fe76d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=366093
4 changed files with 4 additions and 1 deletions

View file

@ -36,6 +36,9 @@
# xargs -n1 | sort | uniq -d;
# done
# 20200923: memfd_test moved to /usr/tests/sys/posixshm
OLD_FILES+=usr/tests/sys/kern/memfd_test
# 20200910: remove vm_map_create(9) to sync with the code
OLD_FILES+=usr/share/man/man9/vm_map_create.9.gz

View file

@ -11,7 +11,6 @@ TESTSDIR= ${TESTSBASE}/sys/kern
ATF_TESTS_C+= kern_copyin
ATF_TESTS_C+= kern_descrip_test
ATF_TESTS_C+= kill_zombie
ATF_TESTS_C+= memfd_test
ATF_TESTS_C+= ptrace_test
TEST_METADATA.ptrace_test+= timeout="15"
ATF_TESTS_C+= reaper

View file

@ -4,6 +4,7 @@ PACKAGE= tests
TESTSDIR= ${TESTSBASE}/sys/posixshm
ATF_TESTS_C+= memfd_test
ATF_TESTS_C+= posixshm_test
.include <bsd.test.mk>