diff options
author | Rob Landley <rob@landley.net> | 2006-05-05 21:07:41 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-05-05 21:07:41 +0000 |
commit | c008c7440dd0db4b51afba30cc60814577a2090a (patch) | |
tree | 307ea3a46f36780aa390596c7a8329ddbc327718 /testsuite/readlink.tests | |
parent | 1781188a9d6ee045a72f37b86102380909e04539 (diff) | |
download | busybox-w32-c008c7440dd0db4b51afba30cc60814577a2090a.tar.gz busybox-w32-c008c7440dd0db4b51afba30cc60814577a2090a.tar.bz2 busybox-w32-c008c7440dd0db4b51afba30cc60814577a2090a.zip |
New test from Natanael Copa.
Diffstat (limited to 'testsuite/readlink.tests')
-rw-r--r-- | testsuite/readlink.tests | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testsuite/readlink.tests b/testsuite/readlink.tests new file mode 100644 index 000000000..5483d9772 --- /dev/null +++ b/testsuite/readlink.tests | |||
@@ -0,0 +1,29 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | # Readlink tests. | ||
4 | # Copyright 2006 by Natanael Copa <n@tanael.org> | ||
5 | # Licensed under GPL v2, see file LICENSE for details. | ||
6 | |||
7 | . testing.sh | ||
8 | |||
9 | TESTDIR=readlink_testdir | ||
10 | TESTFILE="$TESTDIR/testfile" | ||
11 | TESTLINK="testlink" | ||
12 | FAILLINK="$TESTDIR/$TESTDIR/testlink" | ||
13 | |||
14 | # create the dir and test files | ||
15 | mkdir -p "./$TESTDIR" | ||
16 | touch "./$TESTFILE" | ||
17 | ln -s "./$TESTFILE" "./$TESTLINK" | ||
18 | |||
19 | testing "readlink on a file" "readlink ./$TESTFILE" "" "" "" | ||
20 | testing "readlink on a link" "readlink ./$TESTLINK" "./$TESTFILE\n" "" "" | ||
21 | testing "readlink -f on a file" "readlink -f ./$TESTFILE" "$PWD/$TESTFILE\n" "" "" | ||
22 | testing "readlink -f on a link" "readlink -f ./$TESTLINK" "$PWD/$TESTFILE\n" "" "" | ||
23 | testing "readlink -f on an invalid link" "readlink -f ./$FAILLINK" "" "" "" | ||
24 | testing "readlink -f on a wierd dir" "readlink -f $TESTDIR/../$TESTFILE" "$PWD/$TESTFILE\n" "" "" | ||
25 | |||
26 | |||
27 | # clean up | ||
28 | rm -r "$TESTLINK" "$TESTDIR" | ||
29 | |||