coreutils/tests/rm/f-1
Jim Meyering 377f2fbc55 .
1997-08-31 16:17:56 +00:00

27 lines
327 B
Bash
Executable File

#!/bin/sh
: ${RM=rm}
test=f-1
if test "$VERBOSE" = yes; then
set -x
$RM --version
fi
: ${RM_TMPDIR=.}
tmp=$RM_TMPDIR/t-rm.$$
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
rm -rf $tmp
exit $fail