diff options
Diffstat (limited to 'tests/chmod/equal-x')
-rwxr-xr-x | tests/chmod/equal-x | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/tests/chmod/equal-x b/tests/chmod/equal-x index bcfb511cc..5a1b85926 100755 --- a/tests/chmod/equal-x +++ b/tests/chmod/equal-x @@ -1,7 +1,7 @@ #!/bin/sh # Test "chmod =x" and the like. -# Copyright (C) 1999, 2000, 2002, 2004, 2005, 2006 Free Software Foundation, +# Copyright (C) 1999, 2000, 2002, 2004-2007 Free Software Foundation, # Inc. # This program is free software: you can redistribute it and/or modify @@ -22,22 +22,10 @@ if test "$VERBOSE" = yes; then chmod --version fi -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 +. $srcdir/../test-lib.sh file=f -touch $file || framework_failure=1 - -if test $framework_failure = 1; then - echo 'failure in testing framework' - (exit 1); exit 1 -fi +touch $file || framework_failure fail=0 umask 005 |