Port tests/rmdir/ignore away from GNU/Linux.
[coreutils/ericb.git] / tests / rm / r-1
blob5e05d43ea6b489aec6fca2b27480796384e65ea2
1 #!/bin/sh
2 # Test "rm -r --verbose".
4 # Copyright (C) 1997, 1998, 2000, 2002, 2004, 2006, 2007 Free Software
5 # Foundation, Inc.
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 3 of the License, or
10 # (at your option) any later version.
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.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 test=r-1
22 if test "$VERBOSE" = yes; then
23 set -x
24 rm --version
27 . $srcdir/../lang-default
28 . $srcdir/../test-lib.sh
30 mkdir a a/a || framework_failure
31 > b || framework_failure
33 cat <<\EOF > $test.E || framework_failure
34 removed directory: `a/a'
35 removed directory: `a'
36 removed `b'
37 EOF
39 fail=0
40 rm --verbose -r a b > $test.O || fail=1
42 for d in $dirs; do
43 if test -d $d; then
44 fail=1
46 done
48 # Compare expected and actual output.
49 compare $test.E $test.O || fail=1
51 (exit $fail); exit $fail