hpet: recover timer offset correctly
[qemu/ar7.git] / tests / qemu-iotests / 177
blob28990977f1a42f99e9a91b50fa971aef47c7e15a
1 #!/bin/bash
3 # Test corner cases with unusual block geometries
5 # Copyright (C) 2016-2017 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/>.
21 # creator
22 owner=eblake@redhat.com
24 seq=`basename $0`
25 echo "QA output created by $seq"
27 here=`pwd`
28 status=1 # failure is the default!
30 _cleanup()
32 _cleanup_test_img
34 trap "_cleanup; exit \$status" 0 1 2 3 15
36 # get standard environment, filters and checks
37 . ./common.rc
38 . ./common.filter
40 _supported_fmt qcow2
41 _supported_proto file
43 CLUSTER_SIZE=1M
44 size=128M
45 options=driver=blkdebug,image.driver=qcow2
46 nested_opts=image.file.driver=file,image.file.filename=$TEST_IMG
48 echo
49 echo "== setting up files =="
51 TEST_IMG="$TEST_IMG.base" _make_test_img $size
52 $QEMU_IO -c "write -P 11 0 $size" "$TEST_IMG.base" | _filter_qemu_io
53 _make_test_img -b "$TEST_IMG.base"
54 $QEMU_IO -c "write -P 22 0 110M" "$TEST_IMG" | _filter_qemu_io
56 # Limited to 64k max-transfer
57 echo
58 echo "== constrained alignment and max-transfer =="
59 limits=align=4k,max-transfer=64k
60 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
61 -c "write -P 33 1000 128k" -c "read -P 33 1000 128k" | _filter_qemu_io
63 echo
64 echo "== write zero with constrained max-transfer =="
65 limits=align=512,max-transfer=64k,opt-write-zero=$CLUSTER_SIZE
66 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
67 -c "write -z 8003584 2093056" | _filter_qemu_io
69 # non-power-of-2 write-zero/discard alignments
70 echo
71 echo "== non-power-of-2 write zeroes limits =="
73 limits=align=512,opt-write-zero=15M,max-write-zero=15M,opt-discard=15M,max-discard=15M
74 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
75 -c "write -z 32M 32M" | _filter_qemu_io
77 echo
78 echo "== non-power-of-2 discard limits =="
80 limits=align=512,opt-write-zero=15M,max-write-zero=15M,opt-discard=15M,max-discard=15M
81 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
82 -c "discard 80000001 30M" | _filter_qemu_io
84 echo
85 echo "== block status smaller than alignment =="
86 limits=align=4k
87 $QEMU_IO -c "open -o $options,$limits blkdebug::$TEST_IMG" \
88 -c "alloc 1 1" -c "alloc 0x6dffff0 1000" -c "alloc 127m 5P" \
89 -c map | _filter_qemu_io
91 echo
92 echo "== verify image content =="
94 function verify_io()
96 if ($QEMU_IMG info -f "$IMGFMT" "$TEST_IMG" |
97 grep "compat: 0.10" > /dev/null); then
98 # For v2 images, discarded clusters are read from the backing file
99 discarded=11
100 else
101 # Discarded clusters are zeroed for v3 or later
102 discarded=0
105 echo read -P 22 0 1000
106 echo read -P 33 1000 128k
107 echo read -P 22 132072 7871512
108 echo read -P 0 8003584 2093056
109 echo read -P 22 10096640 23457792
110 echo read -P 0 32M 32M
111 echo read -P 22 64M 13M
112 echo read -P $discarded 77M 29M
113 echo read -P 22 106M 4M
114 echo read -P 11 110M 18M
117 verify_io | $QEMU_IO -r "$TEST_IMG" | _filter_qemu_io
118 $QEMU_IMG map --image-opts "$options,$nested_opts,align=4k" \
119 | _filter_qemu_img_map
121 _check_test_img
123 # success, all done
124 echo "*** done"
125 status=0