tests: Drop usage of sgio=unfiltered

libvirt 8.1.0+ rejects it, so it breaks the testsuite

Fixes: #382

Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
Cole Robinson 2022-04-13 07:00:37 -04:00
parent d12be94f40
commit c61074191d
3 changed files with 2 additions and 4 deletions

View File

@ -245,7 +245,7 @@ Foo bar baz &amp; yeah boii &lt; &gt; yeahfoo
<shareable/>
</disk>
<disk type='block' device='lun' rawio='no' sgio='unfiltered'>
<disk type='block' device='lun' rawio='no'>
<driver name='qemu' type='raw'/>
<source dev='/dev/szz'>
<reservations managed="yes"/>

View File

@ -37,7 +37,7 @@
<disk type="file" device="floppy">
<target dev="fde" bus="fdc"/>
</disk>
<disk type="block" device="lun" sgio="unfiltered" rawio="yes">
<disk type="block" device="lun">
<driver name="qemu" type="raw"/>
<source dev="/dev/sda"/>
<target dev="hdd" bus="scsi"/>

View File

@ -314,8 +314,6 @@ def testAlterDisk():
check = _make_checker(disk)
check("type", "block")
check("device", "lun")
check("sgio", None, "unfiltered")
check("rawio", None, "yes")
disk = _get_disk("sda")
check = _make_checker(disk)