1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-25 18:19:00 +02:00
Files
coreutils/tests/chgrp/recurse
T

57 lines
1.3 KiB
Bash
Raw Normal View History

2000-12-15 14:49:48 +00:00
#!/bin/sh
2003-10-15 21:23:46 +00:00
# ad-hoc tests of chgrp with -R and -H or -L and symlinks
2000-12-15 14:49:48 +00:00
if test "$VERBOSE" = yes; then
set -x
chgrp --version
fi
2000-12-16 09:23:10 +00:00
. $srcdir/../group-names
2000-12-15 14:49:48 +00:00
pwd=`pwd`
2003-10-15 21:23:46 +00:00
tmp=recurse.$$
2000-12-15 14:49:48 +00:00
trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0
trap '(exit $?); exit' 1 2 13 15
framework_failure=0
mkdir $tmp || framework_failure=1
cd $tmp || framework_failure=1
if test $framework_failure = 1; then
echo 'failure in testing framework' 1>&2
(exit 1); exit 1
2000-12-15 14:49:48 +00:00
fi
set _ $groups; shift
g1=$1
g2=$2
fail=0
# chgrp -R should not traverse a symlink to a directory.
mkdir d e
2003-10-15 21:23:46 +00:00
touch d/dd e/ee
2000-12-15 14:49:48 +00:00
ln -s ../e d/s
2003-10-15 21:23:46 +00:00
chgrp -R $g1 e/ee || fail=1
# This should not should change the group of e/ee
2000-12-15 14:49:48 +00:00
chgrp -R $g2 d
set _ `ls -ln e/ee`; g=$5; test "$g" = $g1 || fail=1
2003-10-15 21:23:46 +00:00
# This must change the group of e/ee, since -L makes
# chgrp traverse the symlink from d/s into e.
chgrp -L -R $g2 d
set _ `ls -ln e/ee`; g=$5; test "$g" = $g2 || fail=1
2003-10-15 21:23:46 +00:00
# This must *not* change the group of e/ee
chgrp -H -R $g1 d
set _ `ls -ln e/ee`; g=$5; test "$g" = $g2 || fail=1
2003-10-15 21:23:46 +00:00
ln -s d link
# This shouldn't change the group of e/ee either.
chgrp -H -R $g1 link || fail=1
set _ `ls -ln e/ee`; g=$5; test "$g" = $g2 || fail=1
2003-10-15 21:23:46 +00:00
# But it *should* change d/dd.
set _ `ls -ln d/dd`; g=$5; test "$g" = $g1 || fail=1
2000-12-15 14:49:48 +00:00
(exit $fail); exit $fail