t_grow_swapped.sh revision 313498
1# $NetBSD: t_grow_swapped.sh,v 1.3 2015/03/29 19:37:02 chopps 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)
40test_case grow_16M_v0_4096 resize_ffs 4096 512 32768 131072 0 28 swap
41test_case grow_16M_v0_8192 resize_ffs 8192 1024 32768 131072 0 28 swap
42test_case grow_16M_v0_16384 resize_ffs 16384 2048 32768 131072 0 29 swap
43test_case grow_16M_v0_32768 resize_ffs 32768 4096 32768 131072 0 28 swap
44test_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
46test_case grow_24M_v0_4096 resize_ffs 4096 512 49152 65536 0 41 swap
47test_case grow_24M_v0_8192 resize_ffs 8192 1024 49152 65536 0 42 swap
48test_case grow_24M_v0_16384 resize_ffs 16384 2048 49152 65536 0 43 swap
49test_case grow_24M_v0_32768 resize_ffs 32768 4096 49152 65536 0 42 swap
50test_case grow_24M_v0_65536 resize_ffs 65536 8192 49152 65536 0 38 swap
51test_case grow_32M_v0_4096 resize_ffs 4096 512 65536 131072 0 55 swap
52test_case grow_32M_v0_8192 resize_ffs 8192 1024 65536 131072 0 56 swap
53test_case grow_32M_v0_16384 resize_ffs 16384 2048 65536 131072 0 58 swap
54test_case grow_32M_v0_32768 resize_ffs 32768 4096 65536 131072 0 56 swap
55test_case grow_32M_v0_65536 resize_ffs 65536 8192 65536 131072 0 51 swap
56test_case grow_48M_v0_4096 resize_ffs 4096 512 98304 131072 0 82 swap
57test_case grow_48M_v0_8192 resize_ffs 8192 1024 98304 131072 0 84 swap
58test_case grow_48M_v0_16384 resize_ffs 16384 2048 98304 131072 0 87 swap
59test_case grow_48M_v0_32768 resize_ffs 32768 4096 98304 131072 0 83 swap
60test_case grow_48M_v0_65536 resize_ffs 65536 8192 98304 131072 0 76 swap
61test_case grow_64M_v0_4096 resize_ffs 4096 512 131072 262144 0 109 swap
62test_case grow_64M_v0_8192 resize_ffs 8192 1024 131072 262144 0 111 swap
63test_case grow_64M_v0_16384 resize_ffs 16384 2048 131072 262144 0 115 swap
64test_case grow_64M_v0_32768 resize_ffs 32768 4096 131072 262144 0 111 swap
65test_case grow_64M_v0_65536 resize_ffs 65536 8192 131072 262144 0 101 swap
66
67# v1 == newfs -O1 (FFSv1, v2 superblock layout)
68test_case grow_16M_v1_4096 resize_ffs 4096 512 32768 131072 1 28 swap
69test_case grow_16M_v1_8192 resize_ffs 8192 1024 32768 131072 1 28 swap
70test_case grow_16M_v1_16384 resize_ffs 16384 2048 32768 131072 1 29 swap
71test_case grow_16M_v1_32768 resize_ffs 32768 4096 32768 131072 1 28 swap
72test_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
74test_case grow_24M_v1_4096 resize_ffs 4096 512 49152 65536 1 41 swap
75test_case grow_24M_v1_8192 resize_ffs 8192 1024 49152 65536 1 42 swap
76test_case grow_24M_v1_16384 resize_ffs 16384 2048 49152 65536 1 43 swap
77test_case grow_24M_v1_32768 resize_ffs 32768 4096 49152 65536 1 42 swap
78test_case grow_24M_v1_65536 resize_ffs 65536 8192 49152 65536 1 38 swap
79test_case grow_32M_v1_4096 resize_ffs 4096 512 65536 131072 1 55 swap
80test_case grow_32M_v1_8192 resize_ffs 8192 1024 65536 131072 1 56 swap
81test_case grow_32M_v1_16384 resize_ffs 16384 2048 65536 131072 1 58 swap
82test_case grow_32M_v1_32768 resize_ffs 32768 4096 65536 131072 1 56 swap
83test_case grow_32M_v1_65536 resize_ffs 65536 8192 65536 131072 1 51 swap
84test_case grow_48M_v1_4096 resize_ffs 4096 512 98304 131072 1 82 swap
85test_case grow_48M_v1_8192 resize_ffs 8192 1024 98304 131072 1 84 swap
86test_case grow_48M_v1_16384 resize_ffs 16384 2048 98304 131072 1 87 swap
87test_case grow_48M_v1_32768 resize_ffs 32768 4096 98304 131072 1 83 swap
88test_case grow_48M_v1_65536 resize_ffs 65536 8192 98304 131072 1 76 swap
89test_case grow_64M_v1_4096 resize_ffs 4096 512 131072 262144 1 109 swap
90test_case grow_64M_v1_8192 resize_ffs 8192 1024 131072 262144 1 111 swap
91test_case grow_64M_v1_16384 resize_ffs 16384 2048 131072 262144 1 115 swap
92test_case grow_64M_v1_32768 resize_ffs 32768 4096 131072 262144 1 111 swap
93test_case grow_64M_v1_65536 resize_ffs 65536 8192 131072 262144 1 101 swap
94test_case grow_16M_v2_4096 resize_ffs 4096 512 32768 131072 2 26 swap
95test_case grow_16M_v2_8192 resize_ffs 8192 1024 32768 131072 2 28 swap
96test_case grow_16M_v2_16384 resize_ffs 16384 2048 32768 131072 2 29 swap
97test_case grow_16M_v2_32768 resize_ffs 32768 4096 32768 131072 2 28 swap
98test_case grow_16M_v2_65536 resize_ffs 65536 8192 32768 131072 2 25 swap
99test_case grow_24M_v2_4096 resize_ffs 4096 512 49152 65536 2 40 swap
100test_case grow_24M_v2_8192 resize_ffs 8192 1024 49152 65536 2 42 swap
101test_case grow_24M_v2_16384 resize_ffs 16384 2048 49152 65536 2 43 swap
102test_case grow_24M_v2_32768 resize_ffs 32768 4096 49152 65536 2 42 swap
103test_case grow_24M_v2_65536 resize_ffs 65536 8192 49152 65536 2 38 swap
104test_case grow_32M_v2_4096 resize_ffs 4096 512 65536 131072 2 53 swap
105test_case grow_32M_v2_8192 resize_ffs 8192 1024 65536 131072 2 56 swap
106test_case grow_32M_v2_16384 resize_ffs 16384 2048 65536 131072 2 58 swap
107test_case grow_32M_v2_32768 resize_ffs 32768 4096 65536 131072 2 56 swap
108test_case grow_32M_v2_65536 resize_ffs 65536 8192 65536 131072 2 51 swap
109test_case grow_48M_v2_4096 resize_ffs 4096 512 98304 131072 2 80 swap
110test_case grow_48M_v2_8192 resize_ffs 8192 1024 98304 131072 2 84 swap
111test_case grow_48M_v2_16384 resize_ffs 16384 2048 98304 131072 2 87 swap
112test_case grow_48M_v2_32768 resize_ffs 32768 4096 98304 131072 2 83 swap
113test_case grow_48M_v2_65536 resize_ffs 65536 8192 98304 131072 2 76 swap
114test_case grow_64M_v2_4096 resize_ffs 4096 512 131072 262144 2 107 swap
115test_case grow_64M_v2_8192 resize_ffs 8192 1024 131072 262144 2 111 swap
116test_case grow_64M_v2_16384 resize_ffs 16384 2048 131072 262144 2 115 swap
117test_case grow_64M_v2_32768 resize_ffs 32768 4096 131072 262144 2 111 swap
118test_case grow_64M_v2_65536 resize_ffs 65536 8192 131072 262144 2 101 swap
119
120atf_test_case grow_ffsv1_partial_cg
121grow_ffsv1_partial_cg_head()
122{
123	atf_set "descr" "Checks successful ffsv1 growth by less" \
124			"than a cylinder group"
125}
126grow_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 -c -y -s 5760 ${IMG}
134	atf_check -s exit:0 -o ignore resize_ffs -y -s 5760 ${IMG}
135	atf_check -s exit:0 -o ignore fsck_ffs -f -n -F ${IMG}
136	atf_check -s exit:1 -o ignore resize_ffs -c -y -s 5760 ${IMG}
137}
138
139atf_init_test_cases()
140{
141	setupvars
142	atf_add_test_case grow_16M_v0_65536
143	atf_add_test_case grow_16M_v1_4096
144	atf_add_test_case grow_16M_v2_8192
145if [ "${RESIZE_FFS_ALL_TESTS-X}" != "X" ]; then
146	atf_add_test_case grow_16M_v0_4096
147	atf_add_test_case grow_16M_v0_8192
148	atf_add_test_case grow_16M_v0_16384
149	atf_add_test_case grow_16M_v0_32768
150	atf_add_test_case grow_16M_v1_8192
151	atf_add_test_case grow_16M_v1_16384
152	atf_add_test_case grow_16M_v1_32768
153	atf_add_test_case grow_16M_v1_65536
154	atf_add_test_case grow_16M_v2_4096
155	atf_add_test_case grow_16M_v2_16384
156	atf_add_test_case grow_16M_v2_32768
157	atf_add_test_case grow_16M_v2_65536
158	atf_add_test_case grow_24M_v0_4096
159	atf_add_test_case grow_24M_v0_8192
160	atf_add_test_case grow_24M_v0_16384
161	atf_add_test_case grow_24M_v0_32768
162	atf_add_test_case grow_24M_v0_65536
163	atf_add_test_case grow_32M_v0_4096
164	atf_add_test_case grow_32M_v0_8192
165	atf_add_test_case grow_32M_v0_16384
166	atf_add_test_case grow_32M_v0_32768
167	atf_add_test_case grow_32M_v0_65536
168	atf_add_test_case grow_48M_v0_4096
169	atf_add_test_case grow_48M_v0_8192
170	atf_add_test_case grow_48M_v0_16384
171	atf_add_test_case grow_48M_v0_32768
172	atf_add_test_case grow_48M_v0_65536
173	atf_add_test_case grow_64M_v0_4096
174	atf_add_test_case grow_64M_v0_8192
175	atf_add_test_case grow_64M_v0_16384
176	atf_add_test_case grow_64M_v0_32768
177	atf_add_test_case grow_64M_v0_65536
178
179	atf_add_test_case grow_24M_v1_4096
180	atf_add_test_case grow_24M_v1_8192
181	atf_add_test_case grow_24M_v1_16384
182	atf_add_test_case grow_24M_v1_32768
183	atf_add_test_case grow_24M_v1_65536
184	atf_add_test_case grow_32M_v1_4096
185	atf_add_test_case grow_32M_v1_8192
186	atf_add_test_case grow_32M_v1_16384
187	atf_add_test_case grow_32M_v1_32768
188	atf_add_test_case grow_32M_v1_65536
189	atf_add_test_case grow_48M_v1_4096
190	atf_add_test_case grow_48M_v1_8192
191	atf_add_test_case grow_48M_v1_16384
192	atf_add_test_case grow_48M_v1_32768
193	atf_add_test_case grow_48M_v1_65536
194	atf_add_test_case grow_64M_v1_4096
195	atf_add_test_case grow_64M_v1_8192
196	atf_add_test_case grow_64M_v1_16384
197	atf_add_test_case grow_64M_v1_32768
198	atf_add_test_case grow_64M_v1_65536
199
200	atf_add_test_case grow_24M_v2_4096
201	atf_add_test_case grow_24M_v2_8192
202	atf_add_test_case grow_24M_v2_16384
203	atf_add_test_case grow_24M_v2_32768
204	atf_add_test_case grow_24M_v2_65536
205	atf_add_test_case grow_32M_v2_4096
206	atf_add_test_case grow_32M_v2_8192
207	atf_add_test_case grow_32M_v2_16384
208	atf_add_test_case grow_32M_v2_32768
209	atf_add_test_case grow_32M_v2_65536
210	atf_add_test_case grow_48M_v2_4096
211	atf_add_test_case grow_48M_v2_8192
212	atf_add_test_case grow_48M_v2_16384
213	atf_add_test_case grow_48M_v2_32768
214	atf_add_test_case grow_48M_v2_65536
215	atf_add_test_case grow_64M_v2_4096
216	atf_add_test_case grow_64M_v2_8192
217	atf_add_test_case grow_64M_v2_16384
218	atf_add_test_case grow_64M_v2_32768
219	atf_add_test_case grow_64M_v2_65536
220fi
221	atf_add_test_case grow_ffsv1_partial_cg
222}
223