Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / rm / r-2
1 #!/bin/sh
2 # Test "rm -r --verbose".
3
4 # Copyright (C) 1997, 1998, 2000, 2002, 2004, 2006 Free Software
5 # 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 if test "$VERBOSE" = yes; then
23   rm --version
24   set -x
25 fi
26
27 . $srcdir/../lang-default
28
29 pwd=`pwd`
30 t0=`echo "$0"|sed 's,.*/,,'`.tmp;tmp=$t0/$$
31 trap 'status=$?; cd "$pwd" && rm -rf $t0 || exit $?; exit $status' 0
32 trap 'exit $?' 1 2 13 15
33
34 framework_failure=0
35 mkdir -p $tmp || framework_failure=1
36 cd $tmp
37
38 mkdir t t/a t/a/b || framework_failure=1
39 > t/a/f || framework_failure=1
40 > t/a/b/g || framework_failure=1
41
42 # FIXME: if this fails, it's a framework failure
43 cat <<\EOF | sort > t/E || framework_failure=1
44 removed directory: `t/a'
45 removed directory: `t/a/b'
46 removed `t/a/b/g'
47 removed `t/a/f'
48 EOF
49
50 if test $framework_failure = 1; then
51   echo 'failure in testing framework'
52   exit 1
53 fi
54
55 # Note that both the expected output (above) and the actual output lines
56 # are sorted, because directory entries may be processed in arbitrary order.
57 fail=0
58 rm --verbose -r t/a | sort > t/O || fail=1
59
60 if test -d t/a; then
61   fail=1
62 fi
63
64 # Compare expected and actual output.
65 cmp t/E t/O || fail=1
66 test $fail = 1 && diff t/E t/O 2> /dev/null
67
68 (exit $fail); exit $fail