summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2007-05-21 14:25:44 +1000
committerNeil Brown <neilb@suse.de>2007-05-21 14:25:44 +1000
commit1f48664b8e65cafa65d121bb626649a6310cfaf2 (patch)
tree83ecb51e0102d5ae4e4a7bd50930ade1301bfd75 /tests
parent69646c1483b7b728d77ae2c944d624f8c05ad4db (diff)
downloadmdadm-1f48664b8e65cafa65d121bb626649a6310cfaf2.tar.gz
mdadm-1f48664b8e65cafa65d121bb626649a6310cfaf2.tar.xz
mdadm-1f48664b8e65cafa65d121bb626649a6310cfaf2.zip
Add --auto-detect for in-kernel autodetect.
This is equivalent to raidautorun that some distros provide.
Diffstat (limited to 'tests')
-rw-r--r--tests/07autodetect25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/07autodetect b/tests/07autodetect
index e69de29..3e338f8 100644
--- a/tests/07autodetect
+++ b/tests/07autodetect
@@ -0,0 +1,25 @@
+
+#
+# Test in-kernel autodetect.
+# Create a partitionable array on each of two devices,
+# put a partition on each, create an array, and see if we can
+# use autodetect to restart the array.
+
+mdadm -CR $mdp0 -l0 -f -n1 $dev0
+mdadm -CR $mdp1 -l0 -f -n1 $dev1
+sfdisk $mdp0 >&2 << END
+,,FD
+END
+sfdisk $mdp1 >&2 << END
+,,FD
+END
+mdadm -CR $md0 -l1 -n2 ${mdp0}p1 ${mdp1}p1
+check resync
+check raid1
+check wait
+mdadm -S $md0
+mdadm --auto-detect
+check raid1
+
+mdadm -Ss
+exit 0