From 6b099582bde5bd9fce3375bb2078d76bff2598e6 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 24 Aug 1997 19:18:03 +0000 Subject: . --- tests/rm/ir-1 | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100755 tests/rm/ir-1 (limited to 'tests/rm/ir-1') diff --git a/tests/rm/ir-1 b/tests/rm/ir-1 new file mode 100755 index 000000000..b14a6806b --- /dev/null +++ b/tests/rm/ir-1 @@ -0,0 +1,47 @@ +#!/bin/sh + +: ${RM=rm} +test=ir-1 + +if test "$VERBOSE" = yes; then + set -x + $RM --version +fi + +# Don't require use of TMPDIR. +: ${RM_TMPDIR=.} + +tmp=$RM_TMPDIR/t-rm.$$ + +test_failure=0 +mkdir $tmp || test_failure=1 +mkdir $tmp/a $tmp/a/a || test_failure=1 +mkdir $tmp/b $tmp/b/bb || test_failure=1 +mkdir $tmp/c $tmp/c/cc || test_failure=1 + +if $test_failure = 1; then + echo 'failure in testing framework' + exit 1 +fi + +fail=0 +$RM --verbose -r $tmp > $tmp/$test.O || fail=1 + +for d in $dirs; do + if test -d $d; then + fail=1 + fi +done + +cat < $tmp/$test.E +$tmp/a +$tmp/a/a +$tmp/b +EOF + +# Compare expected and actual output. +cmp $tmp/$test.E $tmp/$test.O || fail=1 + +rm -rf $tmp + +exit $fail -- cgit v1.2.3-54-g00ecf