4 # Copyright 2006 by Natanael Copa <n@tanael.org>
5 # Licensed under GPLv2, see file LICENSE in this source tree.
9 TESTDIR=readlink_testdir
10 TESTFILE="$TESTDIR/testfile"
12 FAILLINK="$TESTDIR/$TESTDIR/testlink"
14 # create the dir and test files
17 ln -s "./$TESTFILE" "./$TESTLINK"
19 testing "readlink on a file" "readlink ./$TESTFILE" "" "" ""
20 testing "readlink on a link" "readlink ./$TESTLINK" "./$TESTFILE\n" "" ""
22 optional FEATURE_READLINK_FOLLOW
24 # shell's $PWD may leave symlinks unresolved.
25 # "pwd" may be a built-in and have the same problem.
26 # External pwd _can't_ have that problem (current dir on Unix is physical).
29 testing "readlink -f on a file" "readlink -f ./$TESTFILE" "$pwd/$TESTFILE\n" "" ""
30 testing "readlink -f on a link" "readlink -f ./$TESTLINK" "$pwd/$TESTFILE\n" "" ""
31 testing "readlink -f on an invalid link" "readlink -f ./$FAILLINK" "" "" ""
32 testing "readlink -f on a wierd dir" "readlink -f $TESTDIR/../$TESTFILE" "$pwd/$TESTFILE\n" "" ""
36 rm -r "$TESTLINK" "$TESTDIR"
38 exit $((FAILCOUNT <= 255 ? FAILCOUNT : 255))