diff options
author | Thomas Huth <thuth@redhat.com> | 2023-01-04 12:28:50 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2023-01-24 18:26:41 +0100 |
commit | 95988739c73f76176327061824c603f85b072ff2 (patch) | |
tree | 548ecdbc60c109f95dd0235fbed49d90b3f14258 | |
parent | 724e6703b1823d34e485bc710dcff586c5ce120d (diff) | |
download | qemu-95988739c73f76176327061824c603f85b072ff2.zip qemu-95988739c73f76176327061824c603f85b072ff2.tar.gz qemu-95988739c73f76176327061824c603f85b072ff2.tar.bz2 |
tests/qemu-iotests/262: Check for availability of "blkverify" first
In downstream RHEL builds, we do not have "blkverify" enabled, so
iotest 262 is currently failing there. Thus let's list "blkverify"
as required item so that the test properly gets skipped instead if
"blkverify" is missing.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20230104112850.261480-1-thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rwxr-xr-x | tests/qemu-iotests/262 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qemu-iotests/262 b/tests/qemu-iotests/262 index 2294fd5..a4a92de 100755 --- a/tests/qemu-iotests/262 +++ b/tests/qemu-iotests/262 @@ -25,7 +25,8 @@ import iotests import os iotests.script_initialize(supported_fmts=['qcow2'], - supported_platforms=['linux']) + supported_platforms=['linux'], + required_fmts=['blkverify']) with iotests.FilePath('img') as img_path, \ iotests.FilePath('mig_fifo') as fifo, \ |