From: Shin'ichiro Kawasaki <shinichiro.kawasaki@xxxxxxx> block/013 runs mkfs.ext3 but ext3 file system does not support zoned block devices. Add device_requires() implementation to automatically skip the test if the target device is a zoned block device. Signed-off-by: Shin'ichiro Kawasaki <shinichiro.kawasaki@xxxxxxx> --- tests/block/013 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/block/013 b/tests/block/013 index 35fc181..fe68cc1 100755 --- a/tests/block/013 +++ b/tests/block/013 @@ -19,6 +19,14 @@ requires() { _have_program mkfs.ext3 } +device_requires() { + if _test_dev_is_zoned; then + SKIP_REASON="${TEST_DEV} is a zoned block device (not supported by ext3)" + return 1 + fi + return 0 +} + test_device() { echo "Running ${TEST_NAME}" -- 2.20.1