mirror of https://gitee.com/openkylin/qemu.git
iotests/245: Fix type for iothread property
iothread is a string property, so None (= JSON null) is not a valid value for it. Pass the empty string instead to get the default iothread. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Message-Id: <20211008133442.141332-6-kwolf@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Tested-by: Peter Krempa <pkrempa@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
dbc8221f8c
commit
e2c8eb1454
|
@ -1189,10 +1189,10 @@ class TestBlockdevReopen(iotests.QMPTestCase):
|
|||
self.run_test_iothreads('iothread0', 'iothread0')
|
||||
|
||||
def test_iothreads_switch_backing(self):
|
||||
self.run_test_iothreads('iothread0', None)
|
||||
self.run_test_iothreads('iothread0', '')
|
||||
|
||||
def test_iothreads_switch_overlay(self):
|
||||
self.run_test_iothreads(None, 'iothread0')
|
||||
self.run_test_iothreads('', 'iothread0')
|
||||
|
||||
if __name__ == '__main__':
|
||||
iotests.activate_logging()
|
||||
|
|
Loading…
Reference in New Issue