]> Git Repo - qemu.git/blob - tests/qemu-iotests/177
2005c174f2497eb62dfe422d9948ead9318f572c
[qemu.git] / tests / qemu-iotests / 177
1 #!/bin/bash
2 #
3 # Test corner cases with unusual block geometries
4 #
5 # Copyright (C) 2016-2017 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 [email protected]
23
24 seq=`basename $0`
25 echo "QA output created by $seq"
26
27 here=`pwd`
28 status=1        # failure is the default!
29
30 _cleanup()
31 {
32         _cleanup_test_img
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 _supported_fmt qcow2
41 _supported_proto file
42
43 CLUSTER_SIZE=1M
44 size=128M
45 options=driver=blkdebug,image.driver=qcow2
46
47 echo
48 echo "== setting up files =="
49
50 TEST_IMG="$TEST_IMG.base" _make_test_img $size
51 $QEMU_IO -c "write -P 11 0 $size" "$TEST_IMG.base" | _filter_qemu_io
52 _make_test_img -b "$TEST_IMG.base"
53 $QEMU_IO -c "write -P 22 0 $size" "$TEST_IMG" | _filter_qemu_io
54
55 # Limited to 64k max-transfer
56 echo
57 echo "== constrained alignment and max-transfer =="
58 limits=align=4k,max-transfer=64k
59 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
60          -c "write -P 33 1000 128k" -c "read -P 33 1000 128k" | _filter_qemu_io
61
62 echo
63 echo "== write zero with constrained max-transfer =="
64 limits=align=512,max-transfer=64k,opt-write-zero=$CLUSTER_SIZE
65 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
66          -c "write -z 8003584 2093056" | _filter_qemu_io
67
68 # non-power-of-2 write-zero/discard alignments
69 echo
70 echo "== non-power-of-2 write zeroes limits =="
71
72 limits=align=512,opt-write-zero=15M,max-write-zero=15M,opt-discard=15M,max-discard=15M
73 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
74          -c "write -z 32M 32M" | _filter_qemu_io
75
76 echo
77 echo "== non-power-of-2 discard limits =="
78
79 limits=align=512,opt-write-zero=15M,max-write-zero=15M,opt-discard=15M,max-discard=15M
80 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
81          -c "discard 80000001 30M" | _filter_qemu_io
82
83 echo
84 echo "== verify image content =="
85
86 function verify_io()
87 {
88     if ($QEMU_IMG info -f "$IMGFMT" "$TEST_IMG" |
89             grep "compat: 0.10" > /dev/null); then
90         # For v2 images, discarded clusters are read from the backing file
91         discarded=11
92     else
93         # Discarded clusters are zeroed for v3 or later
94         discarded=0
95     fi
96
97     echo read -P 22 0 1000
98     echo read -P 33 1000 128k
99     echo read -P 22 132072 7871512
100     echo read -P 0 8003584 2093056
101     echo read -P 22 10096640 23457792
102     echo read -P 0 32M 32M
103     echo read -P 22 64M 13M
104     echo read -P $discarded 77M 29M
105     echo read -P 22 106M 22M
106 }
107
108 verify_io | $QEMU_IO -r "$TEST_IMG" | _filter_qemu_io
109
110 _check_test_img
111
112 # success, all done
113 echo "*** done"
114 status=0
This page took 0.019668 seconds and 2 git commands to generate.