From 432a5017a2db3b71bd007b277617499cf35b3ba1 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 4 Jan 2003 09:01:04 +0000 Subject: rm could be tricked into mistakenly reporting a cycle --- tests/rm/cycle | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100755 tests/rm/cycle (limited to 'tests/rm/cycle') diff --git a/tests/rm/cycle b/tests/rm/cycle new file mode 100755 index 000000000..4d3467bff --- /dev/null +++ b/tests/rm/cycle @@ -0,0 +1,39 @@ +#!/bin/sh +# rm (coreutils-4.5.4) could be tricked into mistakenly reporting a cycle. + +if test "$VERBOSE" = yes; then + set -x + rm --version +fi + +. $srcdir/../lang-default + +pwd=`pwd` +t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$ +trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0 +trap '(exit $?); exit $?' 1 2 13 15 + +framework_failure=0 +mkdir -p $tmp || framework_failure=1 +cd $tmp || framework_failure=1 +mkdir -p a/b +touch a/b/file +chmod u-w a/b + +if test $framework_failure = 1; then + echo "$0: failure in testing framework" 1>&2 + (exit 1); exit 1 +fi + +fail=0 + +rm -rf a a 2>&1 | sed 's/:[^:]*$//' > out || fail=1 +cat <<\EOF > exp +rm: cannot remove `a/b/file' +rm: cannot remove `a/b/file' +EOF + +cmp out exp || fail=1 +test $fail = 1 && diff out exp 2> /dev/null + +(exit $fail); exit $fail -- cgit v1.2.3-70-g09d2