From: Logan Gunthorpe Date: Wed, 1 Mar 2023 20:41:34 +0000 (-0700) Subject: tests/00raid5-zero: Introduce test to exercise --write-zeros. X-Git-Tag: mdadm-4.3~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c918cf2af993b55bca9f396c79713e54d3f8b6fb;p=thirdparty%2Fmdadm.git tests/00raid5-zero: Introduce test to exercise --write-zeros. Attempt to create a raid5 array with --write-zeros. If it is successful check the array to ensure it is in sync. If it is unsuccessful and an unsupported error is printed, skip the test. Signed-off-by: Logan Gunthorpe Acked-by: Kinga Tanska Reviewed-by: Xiao Ni Reviewed-by: Chaitanya Kulkarni Acked-by: Coly Li Signed-off-by: Jes Sorensen --- diff --git a/tests/00raid5-zero b/tests/00raid5-zero new file mode 100644 index 00000000..7d0f05a1 --- /dev/null +++ b/tests/00raid5-zero @@ -0,0 +1,12 @@ + +if mdadm -CfR $md0 -l 5 -n3 $dev0 $dev1 $dev2 --write-zeroes ; then + check nosync + echo check > /sys/block/md0/md/sync_action; + check wait +elif grep "zeroing [^ ]* failed: Operation not supported" \ + $targetdir/stderr; then + echo "write-zeros not supported, skipping" +else + echo >&2 "ERROR: mdadm return failure without not supported message" + exit 1 +fi