]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/netbsd-tests/sbin/resize_ffs/t_grow_swapped.sh
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / netbsd-tests / sbin / resize_ffs / t_grow_swapped.sh
1 # $NetBSD: t_grow_swapped.sh,v 1.2 2011/01/11 00:50:02 riz Exp $
2 #
3 # Copyright (c) 2010 The NetBSD Foundation, Inc.
4 # All rights reserved.
5 #
6 # This code is derived from software contributed to The NetBSD Foundation
7 # by Jeffrey C. Rizzo.
8 #
9 # Redistribution and use in source and binary forms, with or without
10 # modification, are permitted provided that the following conditions
11 # are met:
12 # 1. Redistributions of source code must retain the above copyright
13 #    notice, this list of conditions and the following disclaimer.
14 # 2. Redistributions in binary form must reproduce the above copyright
15 #    notice, this list of conditions and the following disclaimer in the
16 #    documentation and/or other materials provided with the distribution.
17 #
18 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 # PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 # POSSIBILITY OF SUCH DAMAGE.
29 #
30
31
32 # resize_ffs params as follows:
33 # resize_ffs blocksize fragsize fssize newfssize level numdata swap
34 # where 'numdata' is the number of data directories to copy - this is
35 # determined manually based on the maximum number that will fit in the
36 # created fs.  'level' is the fs-level (-O 0,1,2) passed to newfs.
37 # If 'swap' is included, byteswap the fs
38
39 # v0 == newfs -O0  (4.3BSD layout, ffsv1 superblock)
40 test_case grow_16M_v0_4096 resize_ffs 4096 512 32768 131072 0 28 swap
41 test_case grow_16M_v0_8192 resize_ffs 8192 1024 32768 131072 0 28 swap
42 test_case grow_16M_v0_16384 resize_ffs 16384 2048 32768 131072 0 29 swap
43 test_case grow_16M_v0_32768 resize_ffs 32768 4096 32768 131072 0 28 swap
44 test_case grow_16M_v0_65536 resize_ffs 65536 8192 32768 131072 0 26 swap
45 # these grow_24M grow a smaller amount; sometimes there's different issues
46 test_case grow_24M_v0_4096 resize_ffs 4096 512 49152 65536 0 41 swap
47 test_case grow_24M_v0_8192 resize_ffs 8192 1024 49152 65536 0 42 swap
48 test_case grow_24M_v0_16384 resize_ffs 16384 2048 49152 65536 0 43 swap
49 test_case grow_24M_v0_32768 resize_ffs 32768 4096 49152 65536 0 42 swap
50 test_case grow_24M_v0_65536 resize_ffs 65536 8192 49152 65536 0 38 swap
51 test_case grow_32M_v0_4096 resize_ffs 4096 512 65536 131072 0 55 swap
52 test_case grow_32M_v0_8192 resize_ffs 8192 1024 65536 131072 0 56 swap
53 test_case grow_32M_v0_16384 resize_ffs 16384 2048 65536 131072 0 58 swap
54 test_case grow_32M_v0_32768 resize_ffs 32768 4096 65536 131072 0 56 swap
55 test_case grow_32M_v0_65536 resize_ffs 65536 8192 65536 131072 0 51 swap
56 test_case grow_48M_v0_4096 resize_ffs 4096 512 98304 131072 0 82 swap
57 test_case grow_48M_v0_8192 resize_ffs 8192 1024 98304 131072 0 84 swap
58 test_case grow_48M_v0_16384 resize_ffs 16384 2048 98304 131072 0 87 swap
59 test_case grow_48M_v0_32768 resize_ffs 32768 4096 98304 131072 0 83 swap
60 test_case grow_48M_v0_65536 resize_ffs 65536 8192 98304 131072 0 76 swap
61 test_case grow_64M_v0_4096 resize_ffs 4096 512 131072 262144 0 109 swap
62 test_case grow_64M_v0_8192 resize_ffs 8192 1024 131072 262144 0 111 swap
63 test_case grow_64M_v0_16384 resize_ffs 16384 2048 131072 262144 0 115 swap
64 test_case grow_64M_v0_32768 resize_ffs 32768 4096 131072 262144 0 111 swap
65 test_case grow_64M_v0_65536 resize_ffs 65536 8192 131072 262144 0 101 swap
66
67 # v1 == newfs -O1 (FFSv1, v2 superblock layout)
68 test_case grow_16M_v1_4096 resize_ffs 4096 512 32768 131072 1 28 swap
69 test_case grow_16M_v1_8192 resize_ffs 8192 1024 32768 131072 1 28 swap
70 test_case grow_16M_v1_16384 resize_ffs 16384 2048 32768 131072 1 29 swap
71 test_case grow_16M_v1_32768 resize_ffs 32768 4096 32768 131072 1 28 swap
72 test_case grow_16M_v1_65536 resize_ffs 65536 8192 32768 131072 1 26 swap
73 # these grow_24M grow a smaller amount; sometimes there's different issues
74 test_case grow_24M_v1_4096 resize_ffs 4096 512 49152 65536 1 41 swap
75 test_case grow_24M_v1_8192 resize_ffs 8192 1024 49152 65536 1 42 swap
76 test_case grow_24M_v1_16384 resize_ffs 16384 2048 49152 65536 1 43 swap
77 test_case grow_24M_v1_32768 resize_ffs 32768 4096 49152 65536 1 42 swap
78 test_case grow_24M_v1_65536 resize_ffs 65536 8192 49152 65536 1 38 swap
79 test_case grow_32M_v1_4096 resize_ffs 4096 512 65536 131072 1 55 swap
80 test_case grow_32M_v1_8192 resize_ffs 8192 1024 65536 131072 1 56 swap
81 test_case grow_32M_v1_16384 resize_ffs 16384 2048 65536 131072 1 58 swap
82 test_case grow_32M_v1_32768 resize_ffs 32768 4096 65536 131072 1 56 swap
83 test_case grow_32M_v1_65536 resize_ffs 65536 8192 65536 131072 1 51 swap
84 test_case grow_48M_v1_4096 resize_ffs 4096 512 98304 131072 1 82 swap
85 test_case grow_48M_v1_8192 resize_ffs 8192 1024 98304 131072 1 84 swap
86 test_case grow_48M_v1_16384 resize_ffs 16384 2048 98304 131072 1 87 swap
87 test_case grow_48M_v1_32768 resize_ffs 32768 4096 98304 131072 1 83 swap
88 test_case grow_48M_v1_65536 resize_ffs 65536 8192 98304 131072 1 76 swap
89 test_case grow_64M_v1_4096 resize_ffs 4096 512 131072 262144 1 109 swap
90 test_case grow_64M_v1_8192 resize_ffs 8192 1024 131072 262144 1 111 swap
91 test_case grow_64M_v1_16384 resize_ffs 16384 2048 131072 262144 1 115 swap
92 test_case grow_64M_v1_32768 resize_ffs 32768 4096 131072 262144 1 111 swap
93 test_case grow_64M_v1_65536 resize_ffs 65536 8192 131072 262144 1 101 swap
94 test_case grow_16M_v2_4096 resize_ffs 4096 512 32768 131072 2 26 swap
95 test_case grow_16M_v2_8192 resize_ffs 8192 1024 32768 131072 2 28 swap
96 test_case grow_16M_v2_16384 resize_ffs 16384 2048 32768 131072 2 29 swap
97 test_case grow_16M_v2_32768 resize_ffs 32768 4096 32768 131072 2 28 swap
98 test_case grow_16M_v2_65536 resize_ffs 65536 8192 32768 131072 2 25 swap
99 test_case grow_24M_v2_4096 resize_ffs 4096 512 49152 65536 2 40 swap
100 test_case grow_24M_v2_8192 resize_ffs 8192 1024 49152 65536 2 42 swap
101 test_case grow_24M_v2_16384 resize_ffs 16384 2048 49152 65536 2 43 swap
102 test_case grow_24M_v2_32768 resize_ffs 32768 4096 49152 65536 2 42 swap
103 test_case grow_24M_v2_65536 resize_ffs 65536 8192 49152 65536 2 38 swap
104 test_case grow_32M_v2_4096 resize_ffs 4096 512 65536 131072 2 53 swap
105 test_case grow_32M_v2_8192 resize_ffs 8192 1024 65536 131072 2 56 swap
106 test_case grow_32M_v2_16384 resize_ffs 16384 2048 65536 131072 2 58 swap
107 test_case grow_32M_v2_32768 resize_ffs 32768 4096 65536 131072 2 56 swap
108 test_case grow_32M_v2_65536 resize_ffs 65536 8192 65536 131072 2 51 swap
109 test_case grow_48M_v2_4096 resize_ffs 4096 512 98304 131072 2 80 swap
110 test_case grow_48M_v2_8192 resize_ffs 8192 1024 98304 131072 2 84 swap
111 test_case grow_48M_v2_16384 resize_ffs 16384 2048 98304 131072 2 87 swap
112 test_case grow_48M_v2_32768 resize_ffs 32768 4096 98304 131072 2 83 swap
113 test_case grow_48M_v2_65536 resize_ffs 65536 8192 98304 131072 2 76 swap
114 test_case grow_64M_v2_4096 resize_ffs 4096 512 131072 262144 2 107 swap
115 test_case grow_64M_v2_8192 resize_ffs 8192 1024 131072 262144 2 111 swap
116 test_case grow_64M_v2_16384 resize_ffs 16384 2048 131072 262144 2 115 swap
117 test_case grow_64M_v2_32768 resize_ffs 32768 4096 131072 262144 2 111 swap
118 test_case grow_64M_v2_65536 resize_ffs 65536 8192 131072 262144 2 101 swap
119
120 atf_test_case grow_ffsv1_partial_cg
121 grow_ffsv1_partial_cg_head()
122 {
123         atf_set "descr" "Checks successful ffsv1 growth by less" \
124                         "than a cylinder group"
125 }
126 grow_ffsv1_partial_cg_body()
127 {
128         echo "***resize_ffs grow test"
129
130         atf_check -o ignore -e ignore newfs -B be -V1 -s 4000 -F ${IMG}
131
132         # size to grow to is chosen to cause partial cg
133         atf_check -s exit:0 -o ignore resize_ffs -y -s 5760 ${IMG}
134         atf_check -s exit:0 -o ignore fsck_ffs -f -n -F ${IMG}
135 }
136
137 atf_init_test_cases()
138 {
139         setupvars
140         atf_add_test_case grow_16M_v0_65536
141         atf_add_test_case grow_16M_v1_4096
142         atf_add_test_case grow_16M_v2_8192
143 if [ "${RESIZE_FFS_ALL_TESTS-X}" != "X" ]; then
144         atf_add_test_case grow_16M_v0_4096
145         atf_add_test_case grow_16M_v0_8192
146         atf_add_test_case grow_16M_v0_16384
147         atf_add_test_case grow_16M_v0_32768
148         atf_add_test_case grow_16M_v1_8192
149         atf_add_test_case grow_16M_v1_16384
150         atf_add_test_case grow_16M_v1_32768
151         atf_add_test_case grow_16M_v1_65536
152         atf_add_test_case grow_16M_v2_4096
153         atf_add_test_case grow_16M_v2_16384
154         atf_add_test_case grow_16M_v2_32768
155         atf_add_test_case grow_16M_v2_65536
156         atf_add_test_case grow_24M_v0_4096
157         atf_add_test_case grow_24M_v0_8192
158         atf_add_test_case grow_24M_v0_16384
159         atf_add_test_case grow_24M_v0_32768
160         atf_add_test_case grow_24M_v0_65536
161         atf_add_test_case grow_32M_v0_4096
162         atf_add_test_case grow_32M_v0_8192
163         atf_add_test_case grow_32M_v0_16384
164         atf_add_test_case grow_32M_v0_32768
165         atf_add_test_case grow_32M_v0_65536
166         atf_add_test_case grow_48M_v0_4096
167         atf_add_test_case grow_48M_v0_8192
168         atf_add_test_case grow_48M_v0_16384
169         atf_add_test_case grow_48M_v0_32768
170         atf_add_test_case grow_48M_v0_65536
171         atf_add_test_case grow_64M_v0_4096
172         atf_add_test_case grow_64M_v0_8192
173         atf_add_test_case grow_64M_v0_16384
174         atf_add_test_case grow_64M_v0_32768
175         atf_add_test_case grow_64M_v0_65536
176
177         atf_add_test_case grow_24M_v1_4096
178         atf_add_test_case grow_24M_v1_8192
179         atf_add_test_case grow_24M_v1_16384
180         atf_add_test_case grow_24M_v1_32768
181         atf_add_test_case grow_24M_v1_65536
182         atf_add_test_case grow_32M_v1_4096
183         atf_add_test_case grow_32M_v1_8192
184         atf_add_test_case grow_32M_v1_16384
185         atf_add_test_case grow_32M_v1_32768
186         atf_add_test_case grow_32M_v1_65536
187         atf_add_test_case grow_48M_v1_4096
188         atf_add_test_case grow_48M_v1_8192
189         atf_add_test_case grow_48M_v1_16384
190         atf_add_test_case grow_48M_v1_32768
191         atf_add_test_case grow_48M_v1_65536
192         atf_add_test_case grow_64M_v1_4096
193         atf_add_test_case grow_64M_v1_8192
194         atf_add_test_case grow_64M_v1_16384
195         atf_add_test_case grow_64M_v1_32768
196         atf_add_test_case grow_64M_v1_65536
197
198         atf_add_test_case grow_24M_v2_4096
199         atf_add_test_case grow_24M_v2_8192
200         atf_add_test_case grow_24M_v2_16384
201         atf_add_test_case grow_24M_v2_32768
202         atf_add_test_case grow_24M_v2_65536
203         atf_add_test_case grow_32M_v2_4096
204         atf_add_test_case grow_32M_v2_8192
205         atf_add_test_case grow_32M_v2_16384
206         atf_add_test_case grow_32M_v2_32768
207         atf_add_test_case grow_32M_v2_65536
208         atf_add_test_case grow_48M_v2_4096
209         atf_add_test_case grow_48M_v2_8192
210         atf_add_test_case grow_48M_v2_16384
211         atf_add_test_case grow_48M_v2_32768
212         atf_add_test_case grow_48M_v2_65536
213         atf_add_test_case grow_64M_v2_4096
214         atf_add_test_case grow_64M_v2_8192
215         atf_add_test_case grow_64M_v2_16384
216         atf_add_test_case grow_64M_v2_32768
217         atf_add_test_case grow_64M_v2_65536
218 fi
219         atf_add_test_case grow_ffsv1_partial_cg
220 }