xref: /qemu/tests/qemu-iotests/049.out (revision bf913672)
1QA output created by 049
2=== Check correct interpretation of suffixes for image size ===
3
4== 1. Traditional size parameter ==
5
6qemu-img create -f qcow2 TEST_DIR/t.qcow2 1024
7Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1024 cluster_size=65536 lazy_refcounts=off refcount_bits=16
8
9qemu-img create -f qcow2 TEST_DIR/t.qcow2 1024b
10Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1024 cluster_size=65536 lazy_refcounts=off refcount_bits=16
11
12qemu-img create -f qcow2 TEST_DIR/t.qcow2 1k
13Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1024 cluster_size=65536 lazy_refcounts=off refcount_bits=16
14
15qemu-img create -f qcow2 TEST_DIR/t.qcow2 1K
16Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1024 cluster_size=65536 lazy_refcounts=off refcount_bits=16
17
18qemu-img create -f qcow2 TEST_DIR/t.qcow2 1M
19Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1048576 cluster_size=65536 lazy_refcounts=off refcount_bits=16
20
21qemu-img create -f qcow2 TEST_DIR/t.qcow2 1G
22Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1073741824 cluster_size=65536 lazy_refcounts=off refcount_bits=16
23
24qemu-img create -f qcow2 TEST_DIR/t.qcow2 1T
25Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1099511627776 cluster_size=65536 lazy_refcounts=off refcount_bits=16
26
27qemu-img create -f qcow2 TEST_DIR/t.qcow2 1024.0
28Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1024 cluster_size=65536 lazy_refcounts=off refcount_bits=16
29
30qemu-img create -f qcow2 TEST_DIR/t.qcow2 1024.0b
31Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1024 cluster_size=65536 lazy_refcounts=off refcount_bits=16
32
33qemu-img create -f qcow2 TEST_DIR/t.qcow2 1.5k
34Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1536 cluster_size=65536 lazy_refcounts=off refcount_bits=16
35
36qemu-img create -f qcow2 TEST_DIR/t.qcow2 1.5K
37Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1536 cluster_size=65536 lazy_refcounts=off refcount_bits=16
38
39qemu-img create -f qcow2 TEST_DIR/t.qcow2 1.5M
40Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1572864 cluster_size=65536 lazy_refcounts=off refcount_bits=16
41
42qemu-img create -f qcow2 TEST_DIR/t.qcow2 1.5G
43Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1610612736 cluster_size=65536 lazy_refcounts=off refcount_bits=16
44
45qemu-img create -f qcow2 TEST_DIR/t.qcow2 1.5T
46Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1649267441664 cluster_size=65536 lazy_refcounts=off refcount_bits=16
47
48== 2. Specifying size via -o ==
49
50qemu-img create -f qcow2 -o size=1024 TEST_DIR/t.qcow2
51Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1024 cluster_size=65536 lazy_refcounts=off refcount_bits=16
52
53qemu-img create -f qcow2 -o size=1024b TEST_DIR/t.qcow2
54Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1024 cluster_size=65536 lazy_refcounts=off refcount_bits=16
55
56qemu-img create -f qcow2 -o size=1k TEST_DIR/t.qcow2
57Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1024 cluster_size=65536 lazy_refcounts=off refcount_bits=16
58
59qemu-img create -f qcow2 -o size=1K TEST_DIR/t.qcow2
60Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1024 cluster_size=65536 lazy_refcounts=off refcount_bits=16
61
62qemu-img create -f qcow2 -o size=1M TEST_DIR/t.qcow2
63Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1048576 cluster_size=65536 lazy_refcounts=off refcount_bits=16
64
65qemu-img create -f qcow2 -o size=1G TEST_DIR/t.qcow2
66Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1073741824 cluster_size=65536 lazy_refcounts=off refcount_bits=16
67
68qemu-img create -f qcow2 -o size=1T TEST_DIR/t.qcow2
69Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1099511627776 cluster_size=65536 lazy_refcounts=off refcount_bits=16
70
71qemu-img create -f qcow2 -o size=1024.0 TEST_DIR/t.qcow2
72Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1024 cluster_size=65536 lazy_refcounts=off refcount_bits=16
73
74qemu-img create -f qcow2 -o size=1024.0b TEST_DIR/t.qcow2
75Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1024 cluster_size=65536 lazy_refcounts=off refcount_bits=16
76
77qemu-img create -f qcow2 -o size=1.5k TEST_DIR/t.qcow2
78Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1536 cluster_size=65536 lazy_refcounts=off refcount_bits=16
79
80qemu-img create -f qcow2 -o size=1.5K TEST_DIR/t.qcow2
81Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1536 cluster_size=65536 lazy_refcounts=off refcount_bits=16
82
83qemu-img create -f qcow2 -o size=1.5M TEST_DIR/t.qcow2
84Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1572864 cluster_size=65536 lazy_refcounts=off refcount_bits=16
85
86qemu-img create -f qcow2 -o size=1.5G TEST_DIR/t.qcow2
87Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1610612736 cluster_size=65536 lazy_refcounts=off refcount_bits=16
88
89qemu-img create -f qcow2 -o size=1.5T TEST_DIR/t.qcow2
90Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=1649267441664 cluster_size=65536 lazy_refcounts=off refcount_bits=16
91
92== 3. Invalid sizes ==
93
94qemu-img create -f qcow2 TEST_DIR/t.qcow2 -- -1024
95qemu-img: Image size must be less than 8 EiB!
96
97qemu-img create -f qcow2 -o size=-1024 TEST_DIR/t.qcow2
98qemu-img: TEST_DIR/t.qcow2: Value '-1024' is out of range for parameter 'size'
99
100qemu-img create -f qcow2 TEST_DIR/t.qcow2 -- -1k
101qemu-img: Image size must be less than 8 EiB!
102
103qemu-img create -f qcow2 -o size=-1k TEST_DIR/t.qcow2
104qemu-img: TEST_DIR/t.qcow2: Value '-1k' is out of range for parameter 'size'
105
106qemu-img create -f qcow2 TEST_DIR/t.qcow2 -- 1kilobyte
107qemu-img: Invalid image size specified! You may use k, M, G, T, P or E suffixes for
108qemu-img: kilobytes, megabytes, gigabytes, terabytes, petabytes and exabytes.
109
110qemu-img create -f qcow2 -o size=1kilobyte TEST_DIR/t.qcow2
111qemu-img: TEST_DIR/t.qcow2: Parameter 'size' expects a non-negative number below 2^64
112Optional suffix k, M, G, T, P or E means kilo-, mega-, giga-, tera-, peta-
113and exabytes, respectively.
114
115qemu-img create -f qcow2 TEST_DIR/t.qcow2 -- foobar
116qemu-img: Invalid image size specified! You may use k, M, G, T, P or E suffixes for
117qemu-img: kilobytes, megabytes, gigabytes, terabytes, petabytes and exabytes.
118
119qemu-img create -f qcow2 -o size=foobar TEST_DIR/t.qcow2
120qemu-img: TEST_DIR/t.qcow2: Parameter 'size' expects a non-negative number below 2^64
121Optional suffix k, M, G, T, P or E means kilo-, mega-, giga-, tera-, peta-
122and exabytes, respectively.
123
124== Check correct interpretation of suffixes for cluster size ==
125
126qemu-img create -f qcow2 -o cluster_size=1024 TEST_DIR/t.qcow2 64M
127Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=1024 lazy_refcounts=off refcount_bits=16
128
129qemu-img create -f qcow2 -o cluster_size=1024b TEST_DIR/t.qcow2 64M
130Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=1024 lazy_refcounts=off refcount_bits=16
131
132qemu-img create -f qcow2 -o cluster_size=1k TEST_DIR/t.qcow2 64M
133Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=1024 lazy_refcounts=off refcount_bits=16
134
135qemu-img create -f qcow2 -o cluster_size=1K TEST_DIR/t.qcow2 64M
136Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=1024 lazy_refcounts=off refcount_bits=16
137
138qemu-img create -f qcow2 -o cluster_size=1M TEST_DIR/t.qcow2 64M
139Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=1048576 lazy_refcounts=off refcount_bits=16
140
141qemu-img create -f qcow2 -o cluster_size=1024.0 TEST_DIR/t.qcow2 64M
142Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=1024 lazy_refcounts=off refcount_bits=16
143
144qemu-img create -f qcow2 -o cluster_size=1024.0b TEST_DIR/t.qcow2 64M
145Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=1024 lazy_refcounts=off refcount_bits=16
146
147qemu-img create -f qcow2 -o cluster_size=0.5k TEST_DIR/t.qcow2 64M
148Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=512 lazy_refcounts=off refcount_bits=16
149
150qemu-img create -f qcow2 -o cluster_size=0.5K TEST_DIR/t.qcow2 64M
151Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=512 lazy_refcounts=off refcount_bits=16
152
153qemu-img create -f qcow2 -o cluster_size=0.5M TEST_DIR/t.qcow2 64M
154Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=524288 lazy_refcounts=off refcount_bits=16
155
156== Check compat level option ==
157
158qemu-img create -f qcow2 -o compat=0.10 TEST_DIR/t.qcow2 64M
159Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 compat=0.10 cluster_size=65536 lazy_refcounts=off refcount_bits=16
160
161qemu-img create -f qcow2 -o compat=1.1 TEST_DIR/t.qcow2 64M
162Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 compat=1.1 cluster_size=65536 lazy_refcounts=off refcount_bits=16
163
164qemu-img create -f qcow2 -o compat=0.42 TEST_DIR/t.qcow2 64M
165qemu-img: TEST_DIR/t.qcow2: Invalid parameter '0.42'
166Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 compat=0.42 cluster_size=65536 lazy_refcounts=off refcount_bits=16
167
168qemu-img create -f qcow2 -o compat=foobar TEST_DIR/t.qcow2 64M
169qemu-img: TEST_DIR/t.qcow2: Invalid parameter 'foobar'
170Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 compat=foobar cluster_size=65536 lazy_refcounts=off refcount_bits=16
171
172== Check preallocation option ==
173
174qemu-img create -f qcow2 -o preallocation=off TEST_DIR/t.qcow2 64M
175Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=65536 preallocation=off lazy_refcounts=off refcount_bits=16
176
177qemu-img create -f qcow2 -o preallocation=metadata TEST_DIR/t.qcow2 64M
178Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=65536 preallocation=metadata lazy_refcounts=off refcount_bits=16
179
180qemu-img create -f qcow2 -o preallocation=1234 TEST_DIR/t.qcow2 64M
181qemu-img: TEST_DIR/t.qcow2: Invalid parameter '1234'
182Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 cluster_size=65536 preallocation=1234 lazy_refcounts=off refcount_bits=16
183
184== Check encryption option ==
185
186qemu-img create -f qcow2 -o encryption=off TEST_DIR/t.qcow2 64M
187Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 encryption=off cluster_size=65536 lazy_refcounts=off refcount_bits=16
188
189qemu-img create -f qcow2 --object secret,id=sec0,data=123456 -o encryption=on,encrypt.key-secret=sec0 TEST_DIR/t.qcow2 64M
190Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 encryption=on encrypt.key-secret=sec0 cluster_size=65536 lazy_refcounts=off refcount_bits=16
191
192== Check lazy_refcounts option (only with v3) ==
193
194qemu-img create -f qcow2 -o compat=1.1,lazy_refcounts=off TEST_DIR/t.qcow2 64M
195Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 compat=1.1 cluster_size=65536 lazy_refcounts=off refcount_bits=16
196
197qemu-img create -f qcow2 -o compat=1.1,lazy_refcounts=on TEST_DIR/t.qcow2 64M
198Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 compat=1.1 cluster_size=65536 lazy_refcounts=on refcount_bits=16
199
200qemu-img create -f qcow2 -o compat=0.10,lazy_refcounts=off TEST_DIR/t.qcow2 64M
201Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 compat=0.10 cluster_size=65536 lazy_refcounts=off refcount_bits=16
202
203qemu-img create -f qcow2 -o compat=0.10,lazy_refcounts=on TEST_DIR/t.qcow2 64M
204qemu-img: TEST_DIR/t.qcow2: Lazy refcounts only supported with compatibility level 1.1 and above (use version=v3 or greater)
205Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 compat=0.10 cluster_size=65536 lazy_refcounts=on refcount_bits=16
206
207*** done
208