@samitouri / QOSamiQemu / commits / 922891df9a

iotests: add nbd and luks to the I/O test suites

This introduces new suites for running I/O tests on NBD and LUKS drivers, giving new make targets * make check-block-luks * make check-block-nbd as well as adding their tests to 'make check-block SPEED=thorough' Reviewed-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>

Daniel P. Berrangé committed Sep 12, 2025 at 15:14 UTC 922891df9a801395173787a15f1b4a9b5b12453f
2 files changed +5 -3
docs/devel/testing/main.rst
+2 -2
@@ -248,8 +248,8 @@ to run. A slightly more comprehensive test plan can be run by defining
248 ``SPEED=slow``, which enables all tests for the ``qcow2`` and ``raw``
249 formats. The most comprehensive test plan can be run by defining
250 ``SPEED=thorough``, which enables all available tests for the formats
251 -``parallels``, ``qcow2``, ``qed``, ``raw``, ``vdi``, ``vhdx``,
252 -``vmdk``, and ``vpc``.
251 +``luks``, ``nbd``, ``parallels``, ``qcow2``, ``qed``, ``raw``, ``vdi``,
252 +``vhdx``, ``vmdk``, and ``vpc``.
253
254 Each of formats also has its own dedicated make target, named
255 ``make check-block-$FORMAT`` which will run all available tests for
tests/qemu-iotests/meson.build
+3 -1
@@ -15,12 +15,14 @@ qemu_iotests_env = {'PYTHON': python.full_path()}
15 qemu_iotests_formats = {
16 'qcow2': 'quick',
17 'raw': 'slow',
18 + 'luks': 'thorough',
19 + 'nbd': 'thorough',
20 'parallels': 'thorough',
21 'qed': 'thorough',
22 'vdi': 'thorough',
23 'vhdx': 'thorough',
24 'vmdk': 'thorough',
23 - 'vpc': 'thorough'
25 + 'vpc': 'thorough',
26 }
27
28 foreach k, v : emulators