Integration tools/regression/vfs into the FreeBSD test suite
This commit is contained in:
parent
4716abb1e9
commit
9292308b0f
@ -394,6 +394,8 @@
|
||||
..
|
||||
socket
|
||||
..
|
||||
vfs
|
||||
..
|
||||
..
|
||||
usr.bin
|
||||
apply
|
||||
|
@ -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
7
tests/sys/vfs/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
TESTSDIR= ${TESTSBASE}/sys/vfs
|
||||
|
||||
TAP_TESTS_SH+= trailing_slash_test
|
||||
|
||||
.include <bsd.test.mk>
|
@ -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
|
Loading…
Reference in New Issue
Block a user