003 File Manager
Current Path:
/usr/src/tests/sys/vfs
usr
/
src
/
tests
/
sys
/
vfs
/
📁
..
📄
Makefile
(225 B)
📄
Makefile.depend
(293 B)
📄
lookup_cap_dotdot.c
(7.31 KB)
📄
lookup_test.sh
(1.32 KB)
📄
trailing_slash.sh
(787 B)
Editing: trailing_slash.sh
#!/bin/sh # # $FreeBSD$ # # Tests vfs_lookup()'s handling of trailing slashes for symlinks that # point to files. See kern/21768 for details. Fixed in r193028. # : ${TMPDIR=/tmp} testfile="$TMPDIR/testfile-$$" testlink="$TMPDIR/testlink-$$" tests=" $testfile:$testlink:$testfile:0 $testfile:$testlink:$testfile/:1 $testfile:$testlink:$testlink:0 $testfile:$testlink:$testlink/:1 $testfile/:$testlink:$testlink:1 $testfile/:$testlink:$testlink/:1 " touch $testfile || exit 1 trap "rm $testfile $testlink" EXIT set $tests echo "1..$#" n=1 for testspec ; do ( IFS=: set $testspec unset IFS ln -fs "$1" "$2" || exit 1 cat "$3" >/dev/null 2>&1 ret=$? if [ "$ret" -eq "$4" ] ; then echo "ok $n" else echo "fail $n - expected $4, got $ret" fi ) n=$((n+1)) done
Upload File
Create Folder