1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-06-08 18:56:40 +02:00
Files
coreutils/tests/chmod/equal-x
T

55 lines
1.5 KiB
Bash
Raw Normal View History

1999-03-28 14:39:34 +00:00
#!/bin/sh
# Test "chmod =x" and the like.
# Copyright (C) 1999, 2000, 2002, 2004, 2005, 2006 Free Software Foundation,
# 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
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