* gnulib: Update submodule to latest.
[coreutils.git] / tests / setgid-check
blobcf26184588ee9e8aca5174192b90a9cbcda6fbc2
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, 2007, 2009 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 perms=$(stat --printf %A $setgid_tmpdir)
28 rmdir $setgid_tmpdir
29 case $perms in
30   drwx------);;
31   drwxr-xr-x);;  # Windows98 + DJGPP 2.03
32   *) cwd_is_setgid=yes;;
33 esac
34 if test $cwd_is_setgid = yes; then
35   skip_test_ 'this directory has the setgid bit set'