s390x: upgrade status of KVM cores to "supported"
[qemu/ar7.git] / tests / qemu-iotests / 049
blob97d8a64697a6fdf0bf0ebd2458b6a6a81d19ec2b
1 #!/bin/bash
3 # Check qemu-img option parsing
5 # Copyright (C) 2013 Red Hat, Inc.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 # creator
22 owner=kwolf@redhat.com
24 seq=`basename $0`
25 echo "QA output created by $seq"
27 status=1 # failure is the default!
29 _cleanup()
31 _cleanup_test_img
33 trap "_cleanup; exit \$status" 0 1 2 3 15
35 # get standard environment, filters and checks
36 . ./common.rc
37 . ./common.filter
39 _supported_fmt qcow2
40 _supported_proto file
41 _supported_os Linux
43 filter_test_dir()
45 sed -e "s#$IMGPROTO:$TEST_DIR#TEST_DIR#g" \
46 -e "s#$TEST_DIR#TEST_DIR#g"
49 test_qemu_img()
51 echo qemu-img "$@" | filter_test_dir
52 $QEMU_IMG "$@" 2>&1 | filter_test_dir
53 echo
56 echo "=== Check correct interpretation of suffixes for image size ==="
57 echo
58 sizes="1024 1024b 1k 1K 1M 1G 1T "
59 sizes+="1024.0 1024.0b 1.5k 1.5K 1.5M 1.5G 1.5T"
61 echo "== 1. Traditional size parameter =="
62 echo
63 for s in $sizes; do
64 test_qemu_img create -f $IMGFMT "$TEST_IMG" $s
65 done
67 echo "== 2. Specifying size via -o =="
68 echo
69 for s in $sizes; do
70 test_qemu_img create -f $IMGFMT -o size=$s "$TEST_IMG"
71 done
73 echo "== 3. Invalid sizes =="
74 echo
75 sizes="-1024 -1k 1kilobyte foobar"
77 for s in $sizes; do
78 test_qemu_img create -f $IMGFMT "$TEST_IMG" -- $s
79 test_qemu_img create -f $IMGFMT -o size=$s "$TEST_IMG"
80 done
82 echo "== Check correct interpretation of suffixes for cluster size =="
83 echo
84 sizes="1024 1024b 1k 1K 1M "
85 sizes+="1024.0 1024.0b 0.5k 0.5K 0.5M"
87 for s in $sizes; do
88 test_qemu_img create -f $IMGFMT -o cluster_size=$s "$TEST_IMG" 64M
89 done
91 echo "== Check compat level option =="
92 echo
93 test_qemu_img create -f $IMGFMT -o compat=0.10 "$TEST_IMG" 64M
94 test_qemu_img create -f $IMGFMT -o compat=1.1 "$TEST_IMG" 64M
96 test_qemu_img create -f $IMGFMT -o compat=0.42 "$TEST_IMG" 64M
97 test_qemu_img create -f $IMGFMT -o compat=foobar "$TEST_IMG" 64M
99 echo "== Check preallocation option =="
100 echo
101 test_qemu_img create -f $IMGFMT -o preallocation=off "$TEST_IMG" 64M
102 test_qemu_img create -f $IMGFMT -o preallocation=metadata "$TEST_IMG" 64M
103 test_qemu_img create -f $IMGFMT -o preallocation=1234 "$TEST_IMG" 64M
105 echo "== Check encryption option =="
106 echo
107 test_qemu_img create -f $IMGFMT -o encryption=off "$TEST_IMG" 64M
108 test_qemu_img create -f $IMGFMT --object secret,id=sec0,data=123456 -o encryption=on,encrypt.key-secret=sec0 "$TEST_IMG" 64M
110 echo "== Check lazy_refcounts option (only with v3) =="
111 echo
112 test_qemu_img create -f $IMGFMT -o compat=1.1,lazy_refcounts=off "$TEST_IMG" 64M
113 test_qemu_img create -f $IMGFMT -o compat=1.1,lazy_refcounts=on "$TEST_IMG" 64M
115 test_qemu_img create -f $IMGFMT -o compat=0.10,lazy_refcounts=off "$TEST_IMG" 64M
116 test_qemu_img create -f $IMGFMT -o compat=0.10,lazy_refcounts=on "$TEST_IMG" 64M
118 # success, all done
119 echo "*** done"
120 rm -f $seq.full
121 status=0