*** empty log message ***
[coreutils.git] / tests / setgid-check
blob7c82fd51fee4bf8cd3402b9ba2df9e491c58afb6
1 # -*- sh -*-
2 # Disable the current test if the working directory seems to have
3 # the setgid bit set.
5 # This test should be run in the temporary directory that ends
6 # up being removed via the trap commands.
8 cwd_is_setgid=no
10 setgid_tmpdir=setgid-$$
11 (umask 77; mkdir $setgid_tmpdir)
12 p=`ls -ld $setgid_tmpdir|sed 's/ .*//'`
13 rmdir $setgid_tmpdir
14 case $p in
15   drwx------);;
16   drwxr-xr-x);;  # Windows98 + DJGPP 2.03 + fileutils-4.1 does this.
17   *) cwd_is_setgid=yes;;
18 esac
19 if test $cwd_is_setgid = yes; then
20   cat <<EOF >&2
21 $0: Since it looks like you're running this test in a directory with
22 the setgid bit set, we're skipping this test.
23 EOF
24   (exit 77); exit 77