3 # Combined test to grow the refcount table and test snapshots.
5 # Copyright (C) 2009 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/>.
22 owner
=kwolf@redhat.com
25 echo "QA output created by $seq"
29 status
=1 # failure is the default!
36 trap "_cleanup; exit \$status" 0 1 2 3 15
38 # get standard environment, filters and checks
42 # actually any format that supports snapshots
44 _supported_proto generic
46 # Internal snapshots are (currently) impossible with refcount_bits=1
47 _unsupported_imgopts
'refcount_bits=1[^0-9]'
52 # With 1k clusters a refcount block contains 512 clusters
53 # This makes 512k of the image file covered by a refcount block
54 # A refcount table that spans one clusters has 128 refcount
55 # tables which makes up 64M in the image file.
57 # We use a 36M image, so initially we can be sure that only one cluster is used
58 # for the refcount table. On the other hand this is big enough to cause a
59 # refcount table growth when rewriting the image after creating one snapshot.
64 # Create two snapshots which fill the image with two different patterns
65 echo "creating first snapshot"
66 $QEMU_IO -c "aio_write -P 123 0 $size" "$TEST_IMG" | _filter_qemu_io
67 $QEMU_IMG snapshot
-c snap1
"$TEST_IMG"
68 echo "creating second snapshot"
69 $QEMU_IO -c "aio_write -P 165 0 $size" "$TEST_IMG" | _filter_qemu_io
70 $QEMU_IMG snapshot
-c snap2
"$TEST_IMG"
72 # Now check the pattern
73 echo "checking first snapshot"
74 $QEMU_IMG snapshot
-a snap1
"$TEST_IMG"
75 $QEMU_IO -c "aio_read -P 123 0 $size" "$TEST_IMG" | _filter_qemu_io
76 echo "checking second snapshot"
77 $QEMU_IMG snapshot
-a snap2
"$TEST_IMG"
78 $QEMU_IO -c "aio_read -P 165 0 $size" "$TEST_IMG" | _filter_qemu_io
81 echo "checking image for errors"