diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-03-13 16:55:38 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-03-13 16:55:38 +0000 |
commit | 3f93672fea235de9cdedbf1cc440f09b3cfab3e8 (patch) | |
tree | 00cd571f505c85d946c225252fbb4373eb23d741 /tests | |
parent | Adding upstream version 4.2+20230304. (diff) | |
download | mdadm-3f93672fea235de9cdedbf1cc440f09b3cfab3e8.tar.xz mdadm-3f93672fea235de9cdedbf1cc440f09b3cfab3e8.zip |
Adding upstream version 4.2+20230313.upstream/4.2+20230313
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tests/00raid5-zero | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/00raid5-zero b/tests/00raid5-zero new file mode 100644 index 0000000..7d0f05a --- /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 |