3 # Test unsupported blockdev-add cases
5 # Copyright (C) 2014 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/>.
25 echo "QA output created by $seq"
29 status=1 # failure is the default!
31 # get standard environment, filters and checks
39 function do_run_qemu()
42 $QEMU -nographic -qmp stdio -serial none "$@"
48 do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qmp | sed -e 's/\("actual-size":\s*\)[0-9]\+/\1SIZE/g'
56 echo === Missing ID ===
60 { "execute": "qmp_capabilities" }
61 { "execute": "blockdev-add",
67 "filename": "$TEST_IMG"
76 echo === Duplicate ID ===
80 { "execute": "qmp_capabilities" }
81 { "execute": "blockdev-add",
88 "filename": "$TEST_IMG"
93 { "execute": "blockdev-add",
100 "filename": "$TEST_IMG"
105 { "execute": "quit" }
109 echo === aio=native without O_DIRECT ===
113 { "execute": "qmp_capabilities" }
114 { "execute": "blockdev-add",
122 "filename": "$TEST_IMG"
127 { "execute": "quit" }
131 echo === Encrypted image ===
134 _make_test_img -o encryption=on $size
136 { "execute": "qmp_capabilities" }
137 { "execute": "blockdev-add",
144 "filename": "$TEST_IMG"
149 { "execute": "quit" }
153 { "execute": "qmp_capabilities" }
154 { "execute": "blockdev-add",
161 "filename": "$TEST_IMG"
166 { "execute": "quit" }