1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-06-26 12:06:50 +02:00
Files
coreutils/tests/chmod/equal-x
T

36 lines
708 B
Bash
Raw Normal View History

1999-03-28 14:39:34 +00:00
#!/bin/sh
if test "$VERBOSE" = yes; then
set -x
chmod --version
fi
pwd=`pwd`
2002-06-15 10:04:30 +00:00
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
1999-03-28 14:39:34 +00:00
framework_failure=0
mkdir -p $tmp || framework_failure=1
2000-11-23 14:32:09 +00:00
cd $tmp || framework_failure=1
1999-03-28 14:39:34 +00:00
2000-11-23 14:32:09 +00:00
file=f
touch $file || framework_failure=1
1999-03-28 14:39:34 +00:00
if test $framework_failure = 1; then
echo 'failure in testing framework'
(exit 1); exit 1
1999-03-28 14:39:34 +00:00
fi
2005-04-28 16:31:32 +00:00
fail=0
1999-03-28 14:39:34 +00:00
umask 005
2005-04-28 16:31:32 +00:00
for mode in =x =xX =Xx =x,=X =X,=x; do
chmod a=r,$mode $file || fail=1
case "`ls -l $file`" in
---x--x---*) ;;
*) fail=1; echo "after \`chmod $mode $file':"; ls -l $file ;;
esac
done
1999-03-28 14:39:34 +00:00
(exit $fail); exit $fail