Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / du / trailing-slash
1 #!/bin/sh
2 # Ensure that du works properly for an argument that refers to a
3 # symbolic link, and that is specified with a trailing slash.
4
5 # Copyright (C) 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 # 02110-1301, USA.
21
22 # Before coreutils-4.5.3, it would remove a single trailing slash.
23
24 if test "$VERBOSE" = yes; then
25   set -x
26   du --version
27 fi
28
29 . $srcdir/../envvar-check
30
31 pwd=`pwd`
32 t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
33 trap 'status=$?; cd "$pwd" && chmod -R u+rwx $t0 && rm -rf $t0 && exit $status' 0
34 trap '(exit $?); exit $?' 1 2 13 15
35
36 framework_failure=0
37 mkdir -p $tmp || framework_failure=1
38 cd $tmp || framework_failure=1
39 mkdir -p dir/1/2 || framework_failure=1
40 ln -s dir slink || framework_failure=1
41
42 if test $framework_failure = 1; then
43   echo "$0: failure in testing framework" 1>&2
44   (exit 1); exit 1
45 fi
46
47 fail=0
48
49 du slink/ | sed 's/^[0-9][0-9]* //' > out
50 echo === >> out
51
52 # Ensure that with -L we get the same results (modulo the trailing slash
53 # on the third line) even without the trailing slash on the command line.
54 du -L slink | sed 's/^[0-9][0-9]*       //' >> out
55 cat <<\EOF > exp
56 slink/1/2
57 slink/1
58 slink/
59 ===
60 slink/1/2
61 slink/1
62 slink
63 EOF
64
65 cmp out exp || fail=1
66 test $fail = 1 && diff out exp 2> /dev/null
67
68 (exit $fail); exit $fail