Stefan Hajnoczi | 202277f | 2019-01-14 13:32:57 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # |
| 3 | # Regression test for throttle group member unregister segfault with iothread |
| 4 | # |
| 5 | # Copyright (c) 2019 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 | import sys |
| 22 | import os |
| 23 | import iotests |
| 24 | from iotests import log |
| 25 | |
John Snow | f357576 | 2019-07-29 16:35:54 -0400 | [diff] [blame] | 26 | virtio_scsi_device = iotests.get_virtio_scsi_device() |
Stefan Hajnoczi | 202277f | 2019-01-14 13:32:57 +0000 | [diff] [blame] | 27 | |
Stefan Hajnoczi | b74b1ad | 2019-02-27 14:44:13 +0000 | [diff] [blame] | 28 | vm = iotests.VM() |
Stefan Hajnoczi | 202277f | 2019-01-14 13:32:57 +0000 | [diff] [blame] | 29 | vm.launch() |
| 30 | |
Andrey Shinkevich | a686241 | 2019-07-15 19:07:59 +0300 | [diff] [blame] | 31 | log(vm.qmp('blockdev-add', node_name='hd0', driver='null-co', read_zeroes=True)) |
Stefan Hajnoczi | 202277f | 2019-01-14 13:32:57 +0000 | [diff] [blame] | 32 | log(vm.qmp('object-add', qom_type='iothread', id='iothread0')) |
| 33 | log(vm.qmp('device_add', id='scsi0', driver=virtio_scsi_device, iothread='iothread0')) |
| 34 | log(vm.qmp('device_add', id='scsi-hd0', driver='scsi-hd', drive='hd0')) |
| 35 | log(vm.qmp('block_set_io_throttle', id='scsi-hd0', bps=0, bps_rd=0, bps_wr=0, |
| 36 | iops=1000, iops_rd=0, iops_wr=0, conv_keys=False)) |
| 37 | log(vm.qmp('device_del', id='scsi-hd0')) |
| 38 | |
| 39 | vm.shutdown() |