]> git.proxmox.com Git - mirror_qemu.git/blob - tests/qemu-iotests/015
eec5387f3d72c831e8c57c252c1e47ceb5b878d1
[mirror_qemu.git] / tests / qemu-iotests / 015
1 #!/usr/bin/env bash
2 #
3 # Combined test to grow the refcount table and test snapshots.
4 #
5 # Copyright (C) 2009 Red Hat, Inc.
6 #
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.
11 #
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.
16 #
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/>.
19 #
20
21 # creator
22 owner=kwolf@redhat.com
23
24 seq=`basename $0`
25 echo "QA output created by $seq"
26
27 status=1 # failure is the default!
28
29 _cleanup()
30 {
31 _cleanup_test_img
32 true
33 }
34 trap "_cleanup; exit \$status" 0 1 2 3 15
35
36 # get standard environment, filters and checks
37 . ./common.rc
38 . ./common.filter
39
40 # actually any format that supports snapshots
41 _supported_fmt qcow2
42 _supported_proto generic
43 # Internal snapshots are (currently) impossible with refcount_bits=1
44 _unsupported_imgopts 'refcount_bits=1[^0-9]'
45
46 echo
47 echo "creating image"
48
49 # With 1k clusters a refcount block contains 512 clusters
50 # This makes 512k of the image file covered by a refcount block
51 # A refcount table that spans one clusters has 128 refcount
52 # tables which makes up 64M in the image file.
53 #
54 # We use a 36M image, so initially we can be sure that only one cluster is used
55 # for the refcount table. On the other hand this is big enough to cause a
56 # refcount table growth when rewriting the image after creating one snapshot.
57 size=36M
58 CLUSTER_SIZE=1k
59 _make_test_img $size
60
61 # Create two snapshots which fill the image with two different patterns
62 echo "creating first snapshot"
63 $QEMU_IO -c "aio_write -P 123 0 $size" "$TEST_IMG" | _filter_qemu_io
64 $QEMU_IMG snapshot -c snap1 "$TEST_IMG"
65 echo "creating second snapshot"
66 $QEMU_IO -c "aio_write -P 165 0 $size" "$TEST_IMG" | _filter_qemu_io
67 $QEMU_IMG snapshot -c snap2 "$TEST_IMG"
68
69 # Now check the pattern
70 echo "checking first snapshot"
71 $QEMU_IMG snapshot -a snap1 "$TEST_IMG"
72 $QEMU_IO -c "aio_read -P 123 0 $size" "$TEST_IMG" | _filter_qemu_io
73 echo "checking second snapshot"
74 $QEMU_IMG snapshot -a snap2 "$TEST_IMG"
75 $QEMU_IO -c "aio_read -P 165 0 $size" "$TEST_IMG" | _filter_qemu_io
76
77 echo
78 echo "checking image for errors"
79 _check_test_img
80
81 # success, all done
82 echo "*** done"
83 rm -f $seq.full
84 status=0