]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
tests: add test for converting levels to raid0 and back.
authorNeilBrown <neilb@suse.de>
Mon, 24 Jun 2013 05:57:58 +0000 (15:57 +1000)
committerNeilBrown <neilb@suse.de>
Mon, 24 Jun 2013 05:57:58 +0000 (15:57 +1000)
Now that I have this mostly working, I should make sure
it doesn't break...

Signed-off-by: NeilBrown <neilb@suse.de>
test
tests/05r6tor0 [new file with mode: 0644]

diff --git a/test b/test
index 1792e1d53716f1442d7caa044e47b2d385974218..76d410f68d701b7902966ce68adff14bd41924a5 100755 (executable)
--- a/test
+++ b/test
@@ -138,6 +138,10 @@ check() {
       grep -s "active $1 " /proc/mdstat > /dev/null || {
                echo >&2 "ERROR active $1 not found" ; cat /proc/mdstat ; exit 1;}
      ;;
+    algorithm )
+      grep -s " algorithm $2 " /proc/mdstat > /dev/null || {
+         echo >&2 "ERROR algorithm $2 not found"; cat /proc/mdstat; exit 1;}
+     ;;
     resync | recovery | reshape)
       sleep 0.5
       grep -s $1 /proc/mdstat > /dev/null || {
diff --git a/tests/05r6tor0 b/tests/05r6tor0
new file mode 100644 (file)
index 0000000..a22b216
--- /dev/null
@@ -0,0 +1,22 @@
+set -x -e
+
+# reshape a RAID6 to RAID5 and then RAID0.
+# then reshape back up to RAID5 and RAID5
+
+mdadm -CR $md0 -l6 -n5 $dev0 $dev1 $dev2 $dev3 $dev4
+check wait
+check raid6
+mdadm -G $md0 -l5
+check wait
+check raid5
+mdadm -G $md0 -l0
+check wait
+check raid0
+mdadm -G $md0 -l5 --add $dev3 $dev4
+check wait
+check raid5
+check algorithm 2
+mdadm -G $md0 -l 6
+check wait
+check raid6
+check algorithm 2