blob: 5c82c9074301c7b80cc7005666606e6ced40e090 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#!/bin/sh
: ${RM=rm}
test=r-2
: ${TMPDIR=.}
if test "$VERBOSE" = yes; then
$RM --version
set -x
fi
tmp=$TMPDIR/t-rm.$$
mkdir $tmp $tmp/a $tmp/a/b
touch $tmp/a/f $tmp/a/b/g
fail=0
$RM --verbose -r $tmp/a > $tmp/$test.O || fail=1
if test -d $tmp/a; then
fail=1
fi
cat <<EOF > $tmp/$test.E
$tmp/a
$tmp/a/b
$tmp/a/b/g
$tmp/a/f
EOF
# Compare expected and actual output.
cmp $tmp/$test.E $tmp/$test.O || fail=1
rm -rf $tmp
exit $fail
|