]>
Commit | Line | Data |
---|---|---|
e1824e58 KW |
1 | #!/bin/bash |
2 | # | |
3 | # Test 'info block' with all kinds of configurations | |
4 | # | |
5 | # Copyright (C) 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 | _supported_os Linux | |
43 | ||
44 | if [ "$QEMU_DEFAULT_MACHINE" != "pc" ]; then | |
45 | _notrun "Requires a PC machine" | |
46 | fi | |
47 | ||
48 | function do_run_qemu() | |
49 | { | |
50 | echo Testing: "$@" | |
51 | ||
52 | ( | |
53 | if ! test -t 0; then | |
54 | while read cmd; do | |
55 | echo $cmd | |
56 | done | |
57 | fi | |
58 | echo quit | |
c09bd34d | 59 | ) | $QEMU -S -nodefaults -display none -device virtio-scsi-pci -monitor stdio "$@" 2>&1 |
e1824e58 KW |
60 | echo |
61 | } | |
62 | ||
63 | function check_info_block() | |
64 | { | |
65 | echo "info block" | | |
66 | QEMU_OPTIONS="" do_run_qemu "$@" | _filter_win32 | _filter_hmp | | |
67 | _filter_qemu | _filter_generated_node_ids | |
68 | } | |
69 | ||
70 | ||
71 | size=64M | |
72 | _make_test_img $size | |
73 | ||
74 | removable="floppy ide-cd scsi-cd" | |
75 | fixed="ide-hd scsi-hd virtio-blk-pci" | |
76 | ||
77 | echo | |
78 | echo "=== Empty drives ===" | |
79 | echo | |
80 | ||
81 | for dev in $removable; do | |
82 | check_info_block -device $dev | |
83 | check_info_block -device $dev,id=qdev_id | |
84 | done | |
85 | ||
86 | echo | |
87 | echo "=== -blockdev/-device=<node-name> ===" | |
88 | echo | |
89 | ||
90 | for dev in $fixed $removable; do | |
91 | check_info_block -blockdev driver=null-co,node-name=null -device $dev,drive=null | |
92 | check_info_block -blockdev driver=null-co,node-name=null -device $dev,drive=null,id=qdev_id | |
93 | done | |
94 | ||
95 | echo | |
96 | echo "=== -drive if=none/-device=<node-name> ===" | |
97 | echo | |
98 | ||
99 | # This creates two BlockBackends that will show up in 'info block'! | |
100 | # A monitor-owned one from -drive, and anonymous one from -device | |
101 | for dev in $fixed $removable; do | |
102 | check_info_block -drive if=none,driver=null-co,node-name=null -device $dev,drive=null,id=qdev_id | |
103 | done | |
104 | ||
105 | echo | |
106 | echo "=== -drive if=none/-device=<bb-name> (with medium) ===" | |
107 | echo | |
108 | ||
109 | for dev in $fixed $removable; do | |
110 | check_info_block -drive if=none,driver=null-co,node-name=null -device $dev,drive=none0 | |
111 | check_info_block -drive if=none,driver=null-co,node-name=null -device $dev,drive=none0,id=qdev_id | |
112 | done | |
113 | ||
114 | echo | |
115 | echo "=== -drive if=none/-device=<bb-name> (without medium) ===" | |
116 | echo | |
117 | ||
118 | check_info_block -drive if=none | |
119 | ||
120 | for dev in $removable; do | |
121 | check_info_block -drive if=none -device $dev,drive=none0 | |
122 | check_info_block -drive if=none -device $dev,drive=none0,id=qdev_id | |
123 | done | |
124 | ||
125 | echo | |
126 | echo "=== -drive if=... ===" | |
127 | echo | |
128 | ||
129 | check_info_block -drive if=floppy | |
130 | check_info_block -drive if=floppy,driver=null-co | |
131 | ||
132 | check_info_block -drive if=ide,driver=null-co | |
133 | check_info_block -drive if=ide,media=cdrom | |
134 | check_info_block -drive if=ide,driver=null-co,media=cdrom | |
135 | ||
136 | check_info_block -drive if=scsi,driver=null-co | |
137 | check_info_block -drive if=scsi,media=cdrom | |
138 | check_info_block -drive if=scsi,driver=null-co,media=cdrom | |
139 | ||
140 | check_info_block -drive if=virtio,driver=null-co | |
141 | ||
142 | check_info_block -drive if=pflash,driver=null-co,size=1M | |
143 | ||
144 | # success, all done | |
145 | echo "*** done" | |
146 | rm -f $seq.full | |
147 | status=0 |