From 05b4128b5d86309fb045726ba526caa65cc468d0 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 18 Jul 2003 09:48:16 +0000 Subject: Update to use newer framework. --- tests/touch/not-owner | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/touch/not-owner') diff --git a/tests/touch/not-owner b/tests/touch/not-owner index dc99928cd..b053c06d7 100755 --- a/tests/touch/not-owner +++ b/tests/touch/not-owner @@ -12,17 +12,17 @@ fi PRIV_CHECK_ARG=require-non-root . $srcdir/../priv-check pwd=`pwd` -tmp=fail-diag.$$ -trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0 -trap '(exit $?); exit' 1 2 13 15 +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 $tmp || framework_failure=1 +mkdir -p $tmp || framework_failure=1 cd $tmp || framework_failure=1 if test $framework_failure = 1; then - echo 'failure in testing framework' 1>&2 - (exit 1); exit + echo "$0: failure in testing framework" 1>&2 + (exit 1); exit 1 fi fail=0 -- cgit v1.2.3-54-g00ecf