#!/bin/sh # $FreeBSD$ desc="chmod returns EFTYPE if the effective user ID is not the super-user, the mode includes the sticky bit (S_ISVTX), and path does not refer to a directory" dir=`dirname $0` . ${dir}/../misc.sh echo "1..20" n0=`namegen` n1=`namegen` expect 0 mkdir ${n0} 0755 cdir=`pwd` cd ${n0} expect 0 mkdir ${n1} 0755 expect 0 chmod ${n1} 01755 expect 01755 stat ${n1} mode expect 0 rmdir ${n1} expect 0 create ${n1} 0644 expect 0 chmod ${n1} 01644 expect 01644 stat ${n1} mode expect 0 unlink ${n1} expect 0 mkdir ${n1} 0755 expect 0 chown ${n1} 65534 65534 expect 0 -u 65534 -g 65534 chmod ${n1} 01755 expect 01755 stat ${n1} mode expect 0 rmdir ${n1} expect 0 create ${n1} 0644 expect 0 chown ${n1} 65534 65534 case "${os}" in FreeBSD) expect EFTYPE -u 65534 -g 65534 chmod ${n1} 01644 expect 0644 stat ${n1} mode ;; SunOS) expect 0 -u 65534 -g 65534 chmod ${n1} 01644 expect 0644 stat ${n1} mode ;; Linux) expect 0 -u 65534 -g 65534 chmod ${n1} 01644 expect 01644 stat ${n1} mode ;; esac expect 0 unlink ${n1} cd ${cdir} expect 0 rmdir ${n0}