]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - tools/regression/pjdfstest/tests/rmdir/09.t
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / tools / regression / pjdfstest / tests / rmdir / 09.t
1 #!/bin/sh
2 # $FreeBSD$
3
4 desc="rmdir returns EPERM if the named directory has its immutable, undeletable or append-only flag set"
5
6 dir=`dirname $0`
7 . ${dir}/../misc.sh
8
9 require chflags
10
11 case "${os}:${fs}" in
12 FreeBSD:ZFS)
13         echo "1..15"
14         ;;
15 FreeBSD:UFS)
16         echo "1..30"
17         ;;
18 *)
19         quick_exit
20 esac
21
22 n0=`namegen`
23
24 expect 0 mkdir ${n0} 0755
25 expect 0 chflags ${n0} SF_IMMUTABLE
26 expect EPERM rmdir ${n0}
27 expect 0 chflags ${n0} none
28 expect 0 rmdir ${n0}
29
30 expect 0 mkdir ${n0} 0755
31 expect 0 chflags ${n0} SF_NOUNLINK
32 expect EPERM rmdir ${n0}
33 expect 0 chflags ${n0} none
34 expect 0 rmdir ${n0}
35
36 expect 0 mkdir ${n0} 0755
37 expect 0 chflags ${n0} SF_APPEND
38 todo FreeBSD:ZFS "Removing a directory protected by SF_APPEND should return EPERM."
39 expect EPERM rmdir ${n0}
40 todo FreeBSD:ZFS "Removing a directory protected by SF_APPEND should return EPERM."
41 expect 0 chflags ${n0} none
42 todo FreeBSD:ZFS "Removing a directory protected by SF_APPEND should return EPERM."
43 expect 0 rmdir ${n0}
44
45 case "${os}:${fs}" in
46 FreeBSD:UFS)
47         expect 0 mkdir ${n0} 0755
48         expect 0 chflags ${n0} UF_IMMUTABLE
49         expect EPERM rmdir ${n0}
50         expect 0 chflags ${n0} none
51         expect 0 rmdir ${n0}
52
53         expect 0 mkdir ${n0} 0755
54         expect 0 chflags ${n0} UF_NOUNLINK
55         expect EPERM rmdir ${n0}
56         expect 0 chflags ${n0} none
57         expect 0 rmdir ${n0}
58
59         expect 0 mkdir ${n0} 0755
60         expect 0 chflags ${n0} UF_APPEND
61         expect EPERM rmdir ${n0}
62         expect 0 chflags ${n0} none
63         expect 0 rmdir ${n0}
64         ;;
65 esac