view tests/test-idpriv-droptemp.su.sh @ 40193:5fd32d128129

relocatable-prog: Use wrapper-free installation also on Mac OS X. Reported by Paul Smith <psmith@gnu.org>. * build-aux/install-reloc: Accept a 'mode' argument as first argument. (func_relativize): New function, from gnulib-tool. Handle mode 'macosx' through invocations of 'otool' and 'install_name_tool'. * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Determine use_macos_tools. If use_macos_tools is true, set INSTALL_PROGRAM_ENV to an 'install-reloc' invocation with mode 'macosx'.
author Bruno Haible <bruno@clisp.org>
date Sat, 23 Feb 2019 22:42:54 +0100
parents c992e0b3355b
children 8c1a17df67e0
line wrap: on
line source

#!/bin/sh
# This script must be run as superuser.

origuid=$1
origgid=$2

# A POSIX compliant 'id' program.
if test -f /usr/xpg4/bin/id; then
  ID=/usr/xpg4/bin/id
else
  ID=id
fi

if test `$ID -u` != 0; then
  echo "Skipping test: not superuser"
  exit 77
fi

./test-idpriv-droptemp${EXEEXT} || exit 13      # normal

chown root:root test-idpriv-droptemp${EXEEXT} 2>/dev/null || \
chown root:wheel test-idpriv-droptemp${EXEEXT} 2>/dev/null || \
  { echo "Skipping test: root privilege not sufficient on this file system"
    exit 77
  }
chmod 4755 test-idpriv-droptemp${EXEEXT}
./test-idpriv-droptemp${EXEEXT} || exit 13      # setuid root
chmod 2755 test-idpriv-droptemp${EXEEXT}
./test-idpriv-droptemp${EXEEXT} || exit 13      # setgid root
chmod 6755 test-idpriv-droptemp${EXEEXT}
./test-idpriv-droptemp${EXEEXT} || exit 13      # setuid and setgid root

if chown nobody test-idpriv-droptemp${EXEEXT} 2>/dev/null; then
  chmod 4755 test-idpriv-droptemp${EXEEXT}
  ./test-idpriv-droptemp${EXEEXT} || exit 13    # setuid nobody
  chmod 2755 test-idpriv-droptemp${EXEEXT}
  ./test-idpriv-droptemp${EXEEXT} || exit 13    # setgid root
  chmod 6755 test-idpriv-droptemp${EXEEXT}
  ./test-idpriv-droptemp${EXEEXT} || exit 13    # setuid nobody and setgid root
fi

if chown root:nobody test-idpriv-droptemp${EXEEXT} 2>/dev/null; then
  chmod 4755 test-idpriv-droptemp${EXEEXT}
  ./test-idpriv-droptemp${EXEEXT} || exit 13    # setuid root
  chmod 2755 test-idpriv-droptemp${EXEEXT}
  ./test-idpriv-droptemp${EXEEXT} || exit 13    # setgid nobody
  chmod 6755 test-idpriv-droptemp${EXEEXT}
  ./test-idpriv-droptemp${EXEEXT} || exit 13    # setuid root and setgid nobody
fi

chown "$origuid:$origgid" test-idpriv-droptemp${EXEEXT}
chmod 755 test-idpriv-droptemp${EXEEXT}