aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/fstest/tests/chmod/11.t
blob: f7bc0568c99be452b7e9d860622faf1bcd5ff153 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/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}