build: update gnulib submodule to latest; bootstrap, too
[coreutils.git] / tests / rm / r-1
blobc1d2d815e74a506a1c9d36fd4dc88b16ef49633c
1 #!/bin/sh
2 # Test "rm -r --verbose".
4 # Copyright (C) 1997-1998, 2000, 2002, 2004, 2006-2010 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/test-lib.sh
29 mkdir a a/a || framework_failure
30 > b || framework_failure
32 cat <<\EOF > $test.E || framework_failure
33 removed directory: `a/a'
34 removed directory: `a'
35 removed `b'
36 EOF
38 rm --verbose -r a b > $test.O || fail=1
40 for d in $dirs; do
41 if test -d $d; then
42 fail=1
44 done
46 # Compare expected and actual output.
47 compare $test.E $test.O || fail=1
49 Exit $fail