diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-18 09:48:16 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-18 09:48:16 +0000 |
commit | 05b4128b5d86309fb045726ba526caa65cc468d0 (patch) | |
tree | 2dfeda1f85688c6ce7a57ce8fec5c90dc49baf2c /tests | |
parent | c42d31bc781550121dca4d836470b11fbed3e0ed (diff) | |
download | coreutils-05b4128b5d86309fb045726ba526caa65cc468d0.tar.xz |
Update to use newer framework.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/touch/not-owner | 12 |
1 files changed, 6 insertions, 6 deletions
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 |