Add/fix copyright notices and adjust to latest GNU FDL.
[platform/upstream/coreutils.git] / tests / setgid-check
1 # -*- sh -*-
2 # Disable the current test if the working directory seems to have
3 # the setgid bit set.
4
5 # Copyright (C) 2000, 2002, 2004, 2005 Free Software Foundation, Inc.
6
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 2 of the License, or
10 # (at your option) any later version.
11
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.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 # 02110-1301, USA.
21
22 # This test should be run in the temporary directory that ends
23 # up being removed via the trap commands.
24
25 cwd_is_setgid=no
26
27 setgid_tmpdir=setgid-$$
28 (umask 77; mkdir $setgid_tmpdir)
29 p=`ls -ld $setgid_tmpdir|sed 's/ .*//'`
30 rmdir $setgid_tmpdir
31 case $p in
32   drwx------);;
33   drwx------+);;
34   drwxr-xr-x);;  # Windows98 + DJGPP 2.03 + fileutils-4.1 does this.
35   *) cwd_is_setgid=yes;;
36 esac
37 if test $cwd_is_setgid = yes; then
38   cat <<EOF >&2
39 $0: Since it looks like you're running this test in a directory with
40 the setgid bit set, we're skipping this test.
41 EOF
42   (exit 77); exit 77
43 fi