tests: factor 350 fail=0 initializations into test-lib.sh
[platform/upstream/coreutils.git] / tests / rm / r-1
1 #!/bin/sh
2 # Test "rm -r --verbose".
3
4 # Copyright (C) 1997, 1998, 2000, 2002, 2004,
5 # 2006-2009 Free Software 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 3 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, see <http://www.gnu.org/licenses/>.
19
20 test=r-1
21
22 if test "$VERBOSE" = yes; then
23   set -x
24   rm --version
25 fi
26
27 . $srcdir/test-lib.sh
28
29 mkdir a a/a || framework_failure
30 > b || framework_failure
31
32 cat <<\EOF > $test.E || framework_failure
33 removed directory: `a/a'
34 removed directory: `a'
35 removed `b'
36 EOF
37
38 rm --verbose -r a b > $test.O || fail=1
39
40 for d in $dirs; do
41   if test -d $d; then
42     fail=1
43   fi
44 done
45
46 # Compare expected and actual output.
47 compare $test.E $test.O || fail=1
48
49 Exit $fail