Integration tools/regression/vfs into the FreeBSD test suite

This commit is contained in:
ngie 2015-04-11 09:05:42 +00:00
parent 4716abb1e9
commit 9292308b0f
4 changed files with 12 additions and 3 deletions

View File

@ -394,6 +394,8 @@
..
socket
..
vfs
..
..
usr.bin
apply

View File

@ -8,6 +8,7 @@ TESTS_SUBDIRS+= kern
TESTS_SUBDIRS+= netinet
TESTS_SUBDIRS+= opencrypto
TESTS_SUBDIRS+= sockets
TESTS_SUBDIRS+= vfs
# Items not integrated into kyua runs by default
SUBDIR+= pjdfstest

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

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

View File

@ -6,8 +6,8 @@
# point to files. See kern/21768 for details. Fixed in r193028.
#
testfile="/tmp/testfile-$$"
testlink="/tmp/testlink-$$"
testfile=$(mktemp tmp.XXXXXX) || exit
testlink="testlink-$$"
tests="
$testfile:$testlink:$testfile:0
@ -18,7 +18,6 @@ $testfile/:$testlink:$testlink:1
$testfile/:$testlink:$testlink/:1
"
touch $testfile || exit 1
trap "rm $testfile $testlink" EXIT
set $tests