mirror of
https://github.com/xemu-project/xemu.git
synced 2025-02-07 04:26:22 +00:00
iotests: specify some unsupported_imgopts for python iotests
We are going to support IMGOPTS for python iotests. Still some iotests will not work with common IMGOPTS used with bash iotests like specifying refcount_bits and compat qcow2 options. So we should define corresponding unsupported_imgopts for now. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Message-Id: <20211223160144.1097696-4-vsementsov@virtuozzo.com> Signed-off-by: Hanna Reitz <hreitz@redhat.com>
This commit is contained in:
parent
7c15400cdd
commit
b30b807724
@ -117,4 +117,5 @@ class TestRefcountTableGrowth(iotests.QMPTestCase):
|
||||
|
||||
if __name__ == '__main__':
|
||||
iotests.main(supported_fmts=['qcow2'],
|
||||
supported_protocols=['file'])
|
||||
supported_protocols=['file'],
|
||||
unsupported_imgopts=['refcount_bits'])
|
||||
|
@ -139,4 +139,5 @@ TestQMP = None
|
||||
|
||||
if __name__ == '__main__':
|
||||
iotests.main(supported_fmts=['qcow2'],
|
||||
supported_protocols=['file'])
|
||||
supported_protocols=['file'],
|
||||
unsupported_imgopts=['refcount_bits'])
|
||||
|
@ -169,4 +169,5 @@ ShrinkBaseClass = None
|
||||
|
||||
if __name__ == '__main__':
|
||||
iotests.main(supported_fmts=['raw', 'qcow2'],
|
||||
supported_protocols=['file'])
|
||||
supported_protocols=['file'],
|
||||
unsupported_imgopts=['compat'])
|
||||
|
@ -157,4 +157,5 @@ class TestPersistentDirtyBitmap(iotests.QMPTestCase):
|
||||
|
||||
if __name__ == '__main__':
|
||||
iotests.main(supported_fmts=['qcow2'],
|
||||
supported_protocols=['file'])
|
||||
supported_protocols=['file'],
|
||||
unsupported_imgopts=['compat'])
|
||||
|
@ -65,4 +65,5 @@ class TestInvalidateAutoclear(iotests.QMPTestCase):
|
||||
|
||||
if __name__ == '__main__':
|
||||
iotests.main(supported_fmts=['qcow2'],
|
||||
supported_protocols=['file'])
|
||||
supported_protocols=['file'],
|
||||
unsupported_imgopts=['compat'])
|
||||
|
@ -26,7 +26,8 @@ from iotests import qemu_img_create, qemu_io, qemu_img_pipe, \
|
||||
file_path, img_info_log, log, filter_qemu_io
|
||||
|
||||
iotests.script_initialize(supported_fmts=['qcow2'],
|
||||
supported_protocols=['file'])
|
||||
supported_protocols=['file'],
|
||||
unsupported_imgopts=['refcount_bits', 'compat'])
|
||||
|
||||
disk = file_path('disk')
|
||||
chunk = 256 * 1024
|
||||
|
@ -23,7 +23,8 @@
|
||||
import iotests
|
||||
from iotests import log
|
||||
|
||||
iotests.script_initialize(supported_fmts=['qcow2'])
|
||||
iotests.script_initialize(supported_fmts=['qcow2'],
|
||||
unsupported_imgopts=['compat'])
|
||||
size = 64 * 1024 * 1024 * 1024
|
||||
gran_small = 32 * 1024
|
||||
gran_large = 128 * 1024
|
||||
|
@ -22,7 +22,8 @@
|
||||
import iotests
|
||||
from iotests import qemu_img_create, file_path, log
|
||||
|
||||
iotests.script_initialize(supported_fmts=['qcow2'])
|
||||
iotests.script_initialize(supported_fmts=['qcow2'],
|
||||
unsupported_imgopts=['compat'])
|
||||
|
||||
disk, top = file_path('disk', 'top')
|
||||
size = 1024 * 1024
|
||||
|
@ -23,7 +23,8 @@ import iotests
|
||||
from iotests import qemu_img_create, file_path, log, filter_qmp_event
|
||||
|
||||
iotests.script_initialize(
|
||||
supported_fmts=['qcow2']
|
||||
supported_fmts=['qcow2'],
|
||||
unsupported_imgopts=['compat']
|
||||
)
|
||||
|
||||
base, top = file_path('base', 'top')
|
||||
|
@ -23,7 +23,8 @@
|
||||
import iotests
|
||||
|
||||
iotests.script_initialize(supported_fmts=['qcow2'],
|
||||
supported_platforms=['linux'])
|
||||
supported_platforms=['linux'],
|
||||
unsupported_imgopts=['refcount_bits', 'compat'])
|
||||
|
||||
size_short = 1 * 1024 * 1024
|
||||
size_long = 2 * 1024 * 1024
|
||||
|
@ -245,4 +245,5 @@ class TestBlockdevBackupAbort(iotests.QMPTestCase):
|
||||
|
||||
if __name__ == '__main__':
|
||||
iotests.main(supported_fmts=['qcow2'],
|
||||
supported_protocols=['file'])
|
||||
supported_protocols=['file'],
|
||||
unsupported_imgopts=['compat'])
|
||||
|
@ -23,7 +23,8 @@ import iotests
|
||||
import subprocess
|
||||
from iotests import qemu_img_create, qemu_io, file_path, log, filter_qemu_io
|
||||
|
||||
iotests.script_initialize(supported_fmts=['qcow2'])
|
||||
iotests.script_initialize(supported_fmts=['qcow2'],
|
||||
unsupported_imgopts=['refcount_bits', 'compat'])
|
||||
|
||||
disk = file_path('disk')
|
||||
chunk = 1024 * 1024
|
||||
|
@ -272,4 +272,5 @@ class TestDirtyBitmapPostcopyMigration(iotests.QMPTestCase):
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
iotests.main(supported_fmts=['qcow2'])
|
||||
iotests.main(supported_fmts=['qcow2'],
|
||||
unsupported_imgopts=['compat'])
|
||||
|
@ -307,7 +307,8 @@ def main() -> None:
|
||||
|
||||
iotests.main(
|
||||
supported_fmts=['qcow2'],
|
||||
supported_protocols=['file']
|
||||
supported_protocols=['file'],
|
||||
unsupported_imgopts=['compat']
|
||||
)
|
||||
|
||||
|
||||
|
@ -21,7 +21,8 @@
|
||||
import iotests
|
||||
from iotests import log, qemu_img_create, qemu_img, qemu_img_pipe
|
||||
|
||||
iotests.script_initialize(supported_fmts=['qcow2'])
|
||||
iotests.script_initialize(supported_fmts=['qcow2'],
|
||||
unsupported_imgopts=['compat'])
|
||||
|
||||
top, base = iotests.file_path('top', 'base')
|
||||
size = '1M'
|
||||
|
Loading…
x
Reference in New Issue
Block a user