* gnulib: Update submodule to latest.
[coreutils.git] / tests / rm / r-1
blob187b6642cc891942806cbfb3400107876104706b
1 #!/bin/sh
2 # Test "rm -r --verbose".
4 # Copyright (C) 1997, 1998, 2000, 2002, 2004, 2006-2008 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 fail=0
39 rm --verbose -r a b > $test.O || fail=1
41 for d in $dirs; do
42 if test -d $d; then
43 fail=1
45 done
47 # Compare expected and actual output.
48 compare $test.E $test.O || fail=1
50 Exit $fail