hw/arm/sbsa-ref: Remove unnecessary check for secure_sysmem == NULL
[qemu/ar7.git] / tests / qemu-iotests / 217
blob58a78a6098a96fef6382b2c5da66ecb57e3567d3
1 #!/usr/bin/env bash
3 # I/O errors when working with internal qcow2 snapshots, and repairing
4 # the result
6 # Copyright (C) 2018 Red Hat, Inc.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 seq=$(basename $0)
22 echo "QA output created by $seq"
24 status=1 # failure is the default!
26 _cleanup()
28 _cleanup_test_img
29 rm -f "$TEST_DIR/blkdebug.conf"
31 trap "_cleanup; exit \$status" 0 1 2 3 15
33 # get standard environment, filters and checks
34 . ./common.rc
35 . ./common.filter
37 # This test is specific to qcow2
38 _supported_fmt qcow2
39 _supported_proto file
41 # This test needs clusters with at least a refcount of 2 so that
42 # OFLAG_COPIED is not set. refcount_bits=1 is therefore unsupported.
43 _unsupported_imgopts 'refcount_bits=1[^0-9]'
45 echo
46 echo '=== Simulating an I/O error during snapshot deletion ==='
47 echo
49 _make_test_img 64M
50 $QEMU_IO -c 'write 0 64k' "$TEST_IMG" | _filter_qemu_io
52 # Create the snapshot
53 $QEMU_IMG snapshot -c foo "$TEST_IMG"
55 # Verify the snapshot is there
56 echo
57 _img_info | grep 'Snapshot list'
58 echo '(Snapshot filtered)'
59 echo
61 # Try to delete the snapshot (with an error happening when freeing the
62 # then leaked clusters)
63 cat > "$TEST_DIR/blkdebug.conf" <<EOF
64 [inject-error]
65 event = "cluster_free"
66 errno = "5"
67 EOF
68 $QEMU_IMG snapshot -d foo "blkdebug:$TEST_DIR/blkdebug.conf:$TEST_IMG"
70 # Verify the snapshot is gone
71 echo
72 _img_info | grep 'Snapshot list'
74 # Should only show leaks
75 echo '--- Checking test image ---'
76 _check_test_img
78 echo
80 # As there are only leaks, this should be able to fully repair the
81 # image
82 echo '--- Repairing test image ---'
83 _check_test_img -r leaks
86 # success, all done
87 echo '*** done'
88 rm -f $seq.full
89 status=0