doc: move @shortcontents and @contents from end to start
[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, 2007 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 3 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, see <http://www.gnu.org/licenses/>.
19
20 # This test should be run in the temporary directory that ends
21 # up being removed via the trap commands.
22
23 cwd_is_setgid=no
24
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   skip_test_ 'this directory has the setgid bit set'
37 fi