tests: factor 350 fail=0 initializations into test-lib.sh
[platform/upstream/coreutils.git] / tests / rm / rm5
1 #!/bin/sh
2 # a basic test of rm -ri
3
4 # Copyright (C) 2002-2004, 2006-2009 Free Software Foundation, Inc.
5
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 if test "$VERBOSE" = yes; then
20   set -x
21   rm --version
22 fi
23
24 . $srcdir/test-lib.sh
25 skip_if_root_
26
27 mkdir -p d/e || framework_failure
28 cat <<EOF > in || framework_failure
29 y
30 y
31 y
32 EOF
33
34 cat <<\EOF > exp || framework_failure
35 rm: descend into directory `d'
36 rm: remove directory `d/e'
37 rm: remove directory `d'
38 EOF
39
40
41 rm -ir d < in > out 2>&1 || fail=1
42
43 # Given input like `rm: ...? rm: ...? ' (no trailing newline),
44 # the `head...' part of the pipeline below removes the trailing space, so
45 # that sed doesn't have to deal with a line lacking a terminating newline.
46 # This avoids a bug whereby some vendor-provided (Tru64) versions of sed
47 # would mistakenly tack a newline onto the end of the output.
48 tr '?' '\n' < out | head --bytes=-1 | sed 's/^ //' > o2
49 mv o2 out
50
51 # Make sure it's been removed.
52 test -d d && fail=1
53
54 compare out exp || fail=1
55
56 Exit $fail