Move tests/sys/kern/mmap_test to tests/sys/vm/mmap_test

As jhb noted, the actual mmap(2) implementation is under sys/vm, not
sys/kern/, so the correct logical place is tests/sys/vm/, not
tests/sys/kern/

X-MFC with: r282076
MFC after: 6 days
This commit is contained in:
Enji Cooper 2015-04-27 17:53:09 +00:00
parent 62e0fc0426
commit 42484f6f69
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=282104
5 changed files with 10 additions and 1 deletions

View File

@ -404,6 +404,8 @@
unlink
..
..
vm
..
..
usr.bin
apply

View File

@ -12,6 +12,7 @@ TESTS_SUBDIRS+= kqueue
TESTS_SUBDIRS+= mqueue
TESTS_SUBDIRS+= netinet
TESTS_SUBDIRS+= opencrypto
TESTS_SUBDIRS+= vm
# Items not integrated into kyua runs by default
SUBDIR+= pjdfstest

View File

@ -3,7 +3,6 @@
TESTSDIR= ${TESTSBASE}/sys/kern
ATF_TESTS_C+= kern_descrip_test
TAP_TESTS_C+= mmap_test
ATF_TESTS_C+= unix_seqpacket_test
TEST_METADATA.unix_seqpacket_test+= timeout="15"

7
tests/sys/vm/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $FreeBSD$
TESTSDIR= ${TESTSBASE}/sys/vm
TAP_TESTS_C+= mmap_test
.include <bsd.test.mk>