mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-20 18:56:39 +02:00
Use better trap.
trap 'status=$?; cd $pwd; chmod -R 700 $t0; rm -rf $t0 && exit $status' 0
This commit is contained in:
@@ -13,13 +13,14 @@ PRIV_CHECK_ARG=require-non-root . $srcdir/../priv-check
|
||||
|
||||
pwd=`pwd`
|
||||
t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
|
||||
trap 'status=$?; cd $pwd; rm -rf $t0 && exit $status' 0
|
||||
trap 'status=$?; cd $pwd; chmod -R 700 $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 no-write/dir || framework_failure=1
|
||||
chmod u-w no-write || framework_failure=1
|
||||
|
||||
if test $framework_failure = 1; then
|
||||
echo '$0: failure in testing framework' 1>&2
|
||||
@@ -29,7 +30,7 @@ fi
|
||||
fail=0
|
||||
|
||||
mv no-write/dir . > out 2>&1 && fail=1
|
||||
cat <<EOF > exp
|
||||
cat <<\EOF > exp
|
||||
mv: cannot move `no-write/dir' to `./dir': Permission denied
|
||||
EOF
|
||||
|
||||
|
||||
Reference in New Issue
Block a user