5a31155215
It is released from time to time and used outside FreeBSD, so it is good to have a name one can google.
25 lines
467 B
Bash
25 lines
467 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
desc="truncate returns EACCES if the named file is not writable by the user"
|
|
|
|
dir=`dirname $0`
|
|
. ${dir}/../misc.sh
|
|
|
|
echo "1..8"
|
|
|
|
n0=`namegen`
|
|
n1=`namegen`
|
|
|
|
expect 0 mkdir ${n0} 0755
|
|
cdir=`pwd`
|
|
cd ${n0}
|
|
expect 0 create ${n1} 0644
|
|
expect EACCES -u 65534 -g 65534 truncate ${n1} 123
|
|
expect 0 chown ${n1} 65534 65534
|
|
expect 0 chmod ${n1} 0444
|
|
expect EACCES -u 65534 -g 65534 truncate ${n1} 123
|
|
expect 0 unlink ${n1}
|
|
cd ${cdir}
|
|
expect 0 rmdir ${n0}
|