summaryrefslogtreecommitdiff
path: root/tests/rm/f-1
blob: 4e72f575c5fe12747ae00b4594d5a9e910d86f04 (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
#!/bin/sh

test=f-1

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

pwd=`pwd`
tmp=`echo "$0"|sed 's,.*/,,'`.tmp
trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0
trap '(exit $?); exit' 1 2 13 15

test_failure=0
mkdir $tmp || test_failure=1

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

fail=0
rm -f $tmp/no-such-file || fail=1

(exit $fail); exit