1999-03-28 14:39:34 +00:00
|
|
|
#!/bin/sh
|
2006-08-17 19:58:17 +00:00
|
|
|
# Test "chmod =x" and the like.
|
|
|
|
|
|
2006-10-22 19:37:31 +02:00
|
|
|
# Copyright (C) 1999, 2000, 2002, 2004, 2005, 2006 Free Software Foundation,
|
2006-08-17 19:58:17 +00:00
|
|
|
# Inc.
|
|
|
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
|
# 02110-1301, USA.
|
1999-03-28 14:39:34 +00:00
|
|
|
|
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
|
|
|
set -x
|
|
|
|
|
chmod --version
|
|
|
|
|
fi
|
|
|
|
|
|
2000-11-19 22:24:24 +00:00
|
|
|
pwd=`pwd`
|
2002-06-15 10:04:30 +00:00
|
|
|
t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
|
2006-10-22 19:37:31 +02:00
|
|
|
trap 'status=$?; cd "$pwd" && chmod -R u+rwx $t0 && rm -rf $t0 && exit $status' 0
|
2000-11-19 22:24:24 +00:00
|
|
|
trap '(exit $?); exit' 1 2 13 15
|
1999-03-28 14:39:34 +00:00
|
|
|
|
|
|
|
|
framework_failure=0
|
2002-06-15 10:15:00 +00:00
|
|
|
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
|
2000-11-19 22:24:24 +00:00
|
|
|
touch $file || framework_failure=1
|
1999-03-28 14:39:34 +00:00
|
|
|
|
|
|
|
|
if test $framework_failure = 1; then
|
|
|
|
|
echo 'failure in testing framework'
|
2004-06-23 15:07:00 +00:00
|
|
|
(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
|
|
|
|
2004-06-23 15:07:00 +00:00
|
|
|
(exit $fail); exit $fail
|