]> Git Repo - qemu.git/blame - tests/qemu-iotests/015
README: fill out some useful quickstart information
[qemu.git] / tests / qemu-iotests / 015
CommitLineData
908eaf68 1#!/bin/bash
3778057d
KW
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
e8c212d6 18# along with this program. If not, see <http://www.gnu.org/licenses/>.
3778057d
KW
19#
20
21# creator
22[email protected]
23
24seq=`basename $0`
25echo "QA output created by $seq"
26
27here=`pwd`
28tmp=/tmp/$$
29status=1 # failure is the default!
30
31_cleanup()
32{
e021915a 33 _cleanup_test_img
3778057d
KW
34 true
35}
36trap "_cleanup; exit \$status" 0 1 2 3 15
37
38# get standard environment, filters and checks
39. ./common.rc
40. ./common.filter
41
e76a8e89 42# actually any format that supports snapshots
3778057d 43_supported_fmt qcow2
9cdfa1b3 44_supported_proto generic
3778057d 45_supported_os Linux
5262caa7
HR
46# Internal snapshots are (currently) impossible with refcount_bits=1
47_unsupported_imgopts 'refcount_bits=1[^0-9]'
3778057d
KW
48
49echo
50echo "creating image"
51
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.
56#
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.
60size=36M
bfe85248
KW
61CLUSTER_SIZE=1k
62_make_test_img $size
3778057d
KW
63
64# Create two snapshots which fill the image with two different patterns
65echo "creating first snapshot"
fef9c191
JC
66$QEMU_IO -c "aio_write -P 123 0 $size" "$TEST_IMG" | _filter_qemu_io
67$QEMU_IMG snapshot -c snap1 "$TEST_IMG"
3778057d 68echo "creating second snapshot"
fef9c191
JC
69$QEMU_IO -c "aio_write -P 165 0 $size" "$TEST_IMG" | _filter_qemu_io
70$QEMU_IMG snapshot -c snap2 "$TEST_IMG"
3778057d
KW
71
72# Now check the pattern
73echo "checking first snapshot"
fef9c191
JC
74$QEMU_IMG snapshot -a snap1 "$TEST_IMG"
75$QEMU_IO -c "aio_read -P 123 0 $size" "$TEST_IMG" | _filter_qemu_io
3778057d 76echo "checking second snapshot"
fef9c191
JC
77$QEMU_IMG snapshot -a snap2 "$TEST_IMG"
78$QEMU_IO -c "aio_read -P 165 0 $size" "$TEST_IMG" | _filter_qemu_io
3778057d
KW
79
80echo
81echo "checking image for errors"
82_check_test_img
83
84# success, all done
85echo "*** done"
86rm -f $seq.full
87status=0
This page took 0.315972 seconds and 4 git commands to generate.