From: Thomas Huth Date: Tue, 14 Oct 2025 10:41:40 +0000 (+0200) Subject: tests/qemu-iotests/184: Fix skip message for qemu-img without throttle X-Git-Tag: v10.2.0-rc1~10^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=061b0275c7c22a97927449ecbac365a4a152a67d;p=thirdparty%2Fqemu.git tests/qemu-iotests/184: Fix skip message for qemu-img without throttle If qemu-img does not support throttling, test 184 currently skips with the message: not suitable for this image format: raw But that's wrong, it's not about the image format, it's about the throttling not being available in qemu-img. Thus fix this by using _notrun with a proper message instead. Reviewed-by: Kevin Wolf Signed-off-by: Thomas Huth Message-ID: <20251014104142.1281028-2-thuth@redhat.com> Signed-off-by: Kevin Wolf --- diff --git a/tests/qemu-iotests/184 b/tests/qemu-iotests/184 index 6d0afe9d38..9248b3265d 100755 --- a/tests/qemu-iotests/184 +++ b/tests/qemu-iotests/184 @@ -51,7 +51,7 @@ run_qemu() } test_throttle=$($QEMU_IMG --help|grep throttle) -[ "$test_throttle" = "" ] && _supported_fmt throttle +[ "$test_throttle" = "" ] && _notrun "qemu-img does not support throttle" echo echo "== checking interface =="