These changes are the raw update to qemu-2.6.
[kvmfornfv.git] / qemu / tests / qemu-iotests / 100
1 #!/bin/bash
2 #
3 # Test simple read/write using plain bdrv_read/bdrv_write
4 #
5 # Copyright (C) 2014 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 owner=stefanha@redhat.com
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 generic
41 _supported_proto generic
42 _supported_os Linux
43
44
45 size=128M
46
47 echo
48 echo "== Single request =="
49 _make_test_img $size
50 $QEMU_IO -c "multiwrite 0 4k" "$TEST_IMG" | _filter_qemu_io
51
52 echo
53 echo "== verify pattern =="
54 $QEMU_IO -c "read -P 0xcd 0 4k" "$TEST_IMG" | _filter_qemu_io
55 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
56
57 _cleanup_test_img
58
59 echo
60 echo "== Sequential requests =="
61 _make_test_img $size
62 $QEMU_IO -c "multiwrite 0 4k ; 4k 4k" "$TEST_IMG" | _filter_qemu_io
63
64 echo
65 echo "== verify pattern =="
66 $QEMU_IO -c "read -P 0xcd 0 4k" "$TEST_IMG" | _filter_qemu_io
67 $QEMU_IO -c "read -P 0xce 4k 4k" "$TEST_IMG" | _filter_qemu_io
68 $QEMU_IO -c "read -P 0 8k 4k" "$TEST_IMG" | _filter_qemu_io
69
70 _cleanup_test_img
71
72 echo
73 echo "== Superset overlapping requests =="
74 _make_test_img $size
75 $QEMU_IO -c "multiwrite 0 4k ; 1k 2k" "$TEST_IMG" | _filter_qemu_io
76
77 echo
78 echo "== verify pattern =="
79 # Order of overlapping in-flight requests is not guaranteed so we cannot verify
80 # [1k, 3k) since it could have either pattern 0xcd or 0xce.
81 $QEMU_IO -c "read -P 0xcd 0 1k" "$TEST_IMG" | _filter_qemu_io
82 $QEMU_IO -c "read -P 0xcd 3k 1k" "$TEST_IMG" | _filter_qemu_io
83 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
84
85 _cleanup_test_img
86
87 echo
88 echo "== Subset overlapping requests =="
89 _make_test_img $size
90 $QEMU_IO -c "multiwrite 1k 2k ; 0k 4k" "$TEST_IMG" | _filter_qemu_io
91
92 echo
93 echo "== verify pattern =="
94 # Order of overlapping in-flight requests is not guaranteed so we cannot verify
95 # [1k, 3k) since it could have either pattern 0xcd or 0xce.
96 $QEMU_IO -c "read -P 0xce 0 1k" "$TEST_IMG" | _filter_qemu_io
97 $QEMU_IO -c "read -P 0xce 3k 1k" "$TEST_IMG" | _filter_qemu_io
98 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
99
100 _cleanup_test_img
101
102 echo
103 echo "== Head overlapping requests =="
104 _make_test_img $size
105 $QEMU_IO -c "multiwrite 0k 2k ; 0k 4k" "$TEST_IMG" | _filter_qemu_io
106
107 echo
108 echo "== verify pattern =="
109 # Order of overlapping in-flight requests is not guaranteed so we cannot verify
110 # [0k, 2k) since it could have either pattern 0xcd or 0xce.
111 $QEMU_IO -c "read -P 0xce 2k 2k" "$TEST_IMG" | _filter_qemu_io
112 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
113
114 _cleanup_test_img
115
116 echo
117 echo "== Tail overlapping requests =="
118 _make_test_img $size
119 $QEMU_IO -c "multiwrite 2k 2k ; 0k 4k" "$TEST_IMG" | _filter_qemu_io
120
121 echo
122 echo "== verify pattern =="
123 # Order of overlapping in-flight requests is not guaranteed so we cannot verify
124 # [2k, 4k) since it could have either pattern 0xcd or 0xce.
125 $QEMU_IO -c "read -P 0xce 0k 2k" "$TEST_IMG" | _filter_qemu_io
126 $QEMU_IO -c "read -P 0 4k 4k" "$TEST_IMG" | _filter_qemu_io
127
128 _cleanup_test_img
129
130 echo
131 echo "== Disjoint requests =="
132 _make_test_img $size
133 $QEMU_IO -c "multiwrite 0 4k ; 64k 4k" "$TEST_IMG" | _filter_qemu_io
134
135 echo
136 echo "== verify pattern =="
137 $QEMU_IO -c "read -P 0xcd 0 4k" "$TEST_IMG" | _filter_qemu_io
138 $QEMU_IO -c "read -P 0 4k 60k" "$TEST_IMG" | _filter_qemu_io
139 $QEMU_IO -c "read -P 0xce 64k 4k" "$TEST_IMG" | _filter_qemu_io
140 $QEMU_IO -c "read -P 0 68k 4k" "$TEST_IMG" | _filter_qemu_io
141
142 # success, all done
143 echo "*** done"
144 rm -f $seq.full
145 status=0