From: Jim Meyering Date: Fri, 19 Apr 2002 19:47:16 +0000 (+0000) Subject: don't bother with TMPDIR X-Git-Tag: SH-UTILS-2_0_12~119 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f79f8d7e0a3bf95b677e42f69393d7608803db2;p=thirdparty%2Fcoreutils.git don't bother with TMPDIR --- diff --git a/tests/rm/r-3 b/tests/rm/r-3 index bbea37001e..96cb8844a3 100755 --- a/tests/rm/r-3 +++ b/tests/rm/r-3 @@ -3,14 +3,15 @@ # 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. -: ${TMPDIR=.} - if test "$VERBOSE" = yes; then rm --version set -x fi -tmp=$TMPDIR/t-rm.$$ +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 framework_fail=0 mkdir $tmp || framework_fail=1