summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhilong Liu <zlliu@suse.com>2018-02-02 14:11:00 +0800
committerJes Sorensen <jsorensen@fb.com>2018-03-08 14:39:21 -0500
commit9042a561b1d5c99a71e7a83e84c9c6207e0832d5 (patch)
tree30a081e095bea885d00d0c1af0a8d26be0c2a625
parent56928762baf7d2aa451406be0526fecd35cdfc78 (diff)
downloadmdadm-9042a561b1d5c99a71e7a83e84c9c6207e0832d5.tar.gz
clustermd_tests: add test case to test switch-resync against cluster-raid1
03r1_switch-resync: Create new array, 1 node is doing resync and other node would keep PENDING, stop the array in resync node, other node would take it over and continue to complete the resync. Signed-off-by: Zhilong Liu <zlliu@suse.com> Signed-off-by: Jes Sorensen <jsorensen@fb.com>
-rw-r--r--clustermd_tests/03r1_switch-resync18
1 files changed, 18 insertions, 0 deletions
diff --git a/clustermd_tests/03r1_switch-resync b/clustermd_tests/03r1_switch-resync
new file mode 100644
index 0000000..d99e1c5
--- /dev/null
+++ b/clustermd_tests/03r1_switch-resync
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+mdadm -CR $md0 -l1 -b clustered -n2 $dev0 $dev1
+ssh $NODE2 mdadm -A $md0 $dev0 $dev1
+check $NODE1 resync
+check $NODE2 PENDING
+stop_md $NODE1 $md0
+check $NODE2 resync
+check $NODE2 wait
+mdadm -A $md0 $dev0 $dev1
+check all raid1
+check all bitmap
+check all nosync
+check all state UU
+check all dmesg
+stop_md all $md0
+
+exit 0