diff options
author | ngie <ngie@FreeBSD.org> | 2015-10-13 16:51:12 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-10-13 16:51:12 +0000 |
commit | d3814e98fdfad8518b88ea31bcdec25c7d98e113 (patch) | |
tree | be312f89f375893a87e8d59f983ac9afa1b70644 /tools | |
parent | 2c46ba7a42c08be87ceaa99985a950cd19b140e0 (diff) | |
download | FreeBSD-src-d3814e98fdfad8518b88ea31bcdec25c7d98e113.zip FreeBSD-src-d3814e98fdfad8518b88ea31bcdec25c7d98e113.tar.gz |
Integrate tools/regression/vfs into the FreeBSD test suite as tests/sys/vfs
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/regression/vfs/trailing_slash.t | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/tools/regression/vfs/trailing_slash.t b/tools/regression/vfs/trailing_slash.t deleted file mode 100755 index b1b8523..0000000 --- a/tools/regression/vfs/trailing_slash.t +++ /dev/null @@ -1,42 +0,0 @@ -#!/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. -# - -testfile="/tmp/testfile-$$" -testlink="/tmp/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 |