Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / ls / follow-slink
1 #!/bin/sh
2 # make sure ls -L always follows symlinks
3
4 # Copyright (C) 2000, 2002, 2004, 2006, 2007 Free Software Foundation, Inc.
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21 if test "$VERBOSE" = yes; then
22   set -x
23   ls --version
24 fi
25
26 pwd=`pwd`
27 tmp=follow-sl.$$
28 trap 'status=$?; cd "$pwd" && rm -rf $tmp && exit $status' 0
29 trap '(exit $?); exit' 1 2 13 15
30
31 framework_failure=0
32 mkdir $tmp || framework_failure=1
33 cd $tmp || framework_failure=1
34
35 # Isolate output files from directory being listed
36 mkdir dir dir/sub dir1 || framework_failure=1
37 cd dir || framework_failure=1
38 ln -s link link || framework_failure=1
39 ln -s ../../dir1 sub/link-to-dir || framework_failure=1
40
41 # Make sure the symlink was created.
42 # `ln -s link link' succeeds, but creates no file on
43 # systems running some DJGPP-2.03 libc.
44 ls -F link > /dev/null || framework_failure=1
45
46 if test $framework_failure = 1; then
47   echo 'failure in testing framework'
48   (exit 1); exit 1
49 fi
50
51 fail=0
52
53 # When explicitly listing a broken link, the command must fail.
54 ls -L link 2> /dev/null && fail=1
55
56 # When encountering a broken link implicitly, Solaris 9 and OpenBSD 3.4
57 # list the link, provided no further information about the link needed
58 # to be printed.  Since POSIX does not specify one way or the other, we
59 # opt for compatibility (this was broken in 5.3.0 through 5.94).
60 LC_ALL=C ls -L > ../out-L || fail=1
61 LC_ALL=C ls -FLR sub > ../out-FLR-sub || fail=1
62
63 cd .. || fail=1
64
65 cat <<\EOF > exp-L
66 link
67 sub
68 EOF
69
70 cat <<\EOF > exp-FLR-sub
71 sub:
72 link-to-dir/
73
74 sub/link-to-dir:
75 EOF
76
77 cmp out-L exp-L || {
78   fail=1
79   diff out-L exp-L
80 }
81 cmp out-FLR-sub exp-FLR-sub || {
82   fail=1
83   diff out-FLR-sub exp-FLR-sub
84 }
85
86 (exit $fail); exit $fail