summaryrefslogtreecommitdiff
path: root/tests/rm/r-3
blob: b3d25a598a7ee8d9851bcee110eec579d2a4f865 (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
38
39
40
41
#!/bin/sh
# Create and remove a directory with more than 254 files.
# An early version of my rewritten rm failed to remove all of
# the files on SunOS4 when there were 254 or more in a directory.

: ${RM=rm}

: ${TMPDIR=.}

if test "$VERBOSE" = yes; then
  $RM --version
  set -x
fi

tmp=$TMPDIR/t-rm.$$

framework_fail=0
mkdir $tmp || framework_fail=1

a=1
n=300
i=$a
while :; do
  touch $tmp/$i || framework_fail=1
  test `expr $i = $n` = 1 && break
  i=`expr $i + 1`
done

test -f $tmp/$a || framework_fail=1
test -f $tmp/$n || framework_fail=1

if test $framework_fail = 1; then
  echo 'failure in testing framework'
  exit 1
fi

fail=0
$RM -rf $tmp || fail=1
test -d $tmp && fail=1

exit $fail