Port tests/rmdir/ignore away from GNU/Linux.
[coreutils/ericb.git] / tests / setgid-check
blob20eba30b64b0b51922555fb43516f6eac9f91e64
1 # -*- sh -*-
2 # Disable the current test if the working directory seems to have
3 # the setgid bit set.
5 # Copyright (C) 2000, 2002, 2004, 2005 Free Software Foundation, Inc.
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 # This test should be run in the temporary directory that ends
21 # up being removed via the trap commands.
23 cwd_is_setgid=no
25 setgid_tmpdir=setgid-$$
26 (umask 77; mkdir $setgid_tmpdir)
27 p=`ls -ld $setgid_tmpdir|sed 's/ .*//'`
28 rmdir $setgid_tmpdir
29 case $p in
30   drwx------);;
31   drwx------+);;
32   drwxr-xr-x);;  # Windows98 + DJGPP 2.03 + fileutils-4.1 does this.
33   *) cwd_is_setgid=yes;;
34 esac
35 if test $cwd_is_setgid = yes; then
36   cat <<EOF >&2
37 $0: Since it looks like you're running this test in a directory with
38 the setgid bit set, we're skipping this test.
39 EOF
40   (exit 77); exit 77