2 # Test "rm -r --verbose".
4 # Copyright (C) 1997, 1998, 2000, 2002, 2004, 2006-2008 Free Software
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/>.
22 if test "$VERBOSE" = yes; then
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
'
39 rm --verbose -r a b
> $test.O || fail
=1
47 # Compare expected and actual output.
48 compare
$test.E
$test.O || fail
=1