3 # run test suite for mdadm
5 if [ " $user" != " root" ]
6 then echo >&2 "test: testing can only be done as 'root'."
19 echo >&2 "test: $mdadm isn't usable."
22 # assume md0, md1, md2 exist in /dev
23 md0
=/dev
/md0 md1
=/dev
/md1 md2
=/dev
/md2
27 # We test mdadm on loop-back block devices.
28 # dir for storing files should be settable by command line maybe
31 # super0, round down to multiple of 64 and substract 64
33 # super00 is nested, subtract 128
35 # super1.0 round down to multiple of 2, subtract 8
39 # super1.2 for linear: round to multiple of 2, subtract 4
42 # subtract another 4 for bitmaps
48 # ddf needs bigger devices as 32Meg is reserved!
51 config
=/tmp
/mdadm.conf
55 $mdadm -Ssq 2> /dev
/null
56 for d
in 0 1 2 3 4 5 6 7 8 9 10 11 12
58 losetup
-d /dev
/loop
$d ; # rm -f $targetdir/mdtest$d
59 rm -f /dev
/disk
/by-path
/loop
*
63 trap cleanup
0 1 2 3 15
66 for d
in 0 1 2 3 4 5 6 7 8 9 10 11 12
69 if [ $d -gt 7 ]; then sz
=$ddfsize ; fi
70 [ -f $targetdir/mdtest
$d ] ||
dd if=/dev
/zero of
=$targetdir/mdtest
$d count
=$sz bs
=1K
> /dev
/null
2>&1
71 [ -b /dev
/loop
$d ] || mknod
/dev
/loop
$d b
7 $d
74 losetup
/dev
/loop
$d $targetdir/mdtest6
# for multipath use
76 losetup
/dev
/loop
$d $targetdir/mdtest
$d
78 eval dev
$d=/dev
/loop
$d
79 eval file$d=$targetdir/mdtest
$d
80 eval devlist
=\"\
$devlist \
$dev$d\"
81 #" <-- add this quote to un-confuse vim syntax highlighting
87 [ -f /proc
/mdstat
] || modprobe md_mod
88 echo 2000 > /proc
/sys
/dev
/raid
/speed_limit_max
89 echo 0 > /sys
/module
/md_mod
/parameters
/start_ro
91 if [ " $1" = " setup" ]
95 # mdadm always adds --quiet, and we want to see any unexpected messages
97 rm -f $targetdir/stderr
99 *-S* ) udevadm settle
;;
102 *-C* ) $mdadm 2> $targetdir/stderr
--quiet "$@" --auto=yes;;
103 * ) $mdadm 2> $targetdir/stderr
--quiet "$@"
107 *-S* ) udevadm settle
;;
109 cat >&2 $targetdir/stderr
113 # check various things
117 spares
=`tr '] ' '\012\012' < /proc/mdstat | grep -c '(S)' || exit 0`
118 if [ $spares -ne $2 ]
120 echo >&2 "ERROR expected $2 spares, found $spares"; exit 1;
124 grep -s "active $1 " /proc
/mdstat
> /dev
/null ||
{
125 echo >&2 "ERROR active $1 not found" ; cat /proc
/mdstat
; exit 1;}
127 resync | recovery | reshape
)
129 grep -s $1 /proc
/mdstat
> /dev
/null ||
{
130 echo >&2 ERROR no
$1 happening
; cat /proc
/mdstat
; exit 1; }
135 if grep -s -E '(resync|recovery|reshape) *=' > /dev
/null
/proc
/mdstat
; then
136 echo >&2 "ERROR resync or recovery is happening!"; cat /proc
/mdstat
; exit 1;
142 while grep -E '(resync|recovery|reshape|check|repair) *=' > /dev
/null
/proc
/mdstat
148 grep -s "blocks.*\[$2\]\$" /proc
/mdstat
> /dev
/null ||
{
149 echo >&2 "ERROR state $2 not found!"; cat /proc
/mdstat
; exit 1; }
154 grep -s bitmap
> /dev
/null
/proc
/mdstat ||
{
155 echo >&2 ERROR no bitmap
; cat /proc
/mdstat
; exit 1; }
158 if grep -s "bitmap" > /dev
/null
/proc
/mdstat
160 echo >&2 ERROR bitmap present
; cat /proc
/mdstat
; exit 1;
164 * ) echo >&2 ERROR unknown check
$1 ; exit 1;
169 if [ -s $targetdir/stderr
]
170 then echo Bad errors from mdadm
: ; cat $targetdir/stderr
; exit 2;
182 mkfs
-j $dev > /dev
/null
2>&1 && fsck
-fn $dev >&2
184 dsize
=$
[dvsize
/chunk
]
186 rasize
=$
[dsize
*2*cnt
]
187 # rasize is in sectors
188 if [ -n "$DEV_ROUND_K" ]; then
189 rasize
=$
[rasize
/DEV_ROUND_K
/2]
190 rasize
=$
[rasize
*DEV_ROUND_K
*2]
192 if [ `/sbin/blockdev --getsize $dev` -eq 0 ]; then sleep 2 ; fi
193 if [ $rasize -ne `/sbin/blockdev --getsize $dev` ]
195 echo "ERROR: size is wrong for $dev: $cnt * $dvsize (chunk=$chunk) = $rasize, not `/sbin/blockdev --getsize $dev`"
205 for script in tests
/$prefix tests
/$prefix*[^~
]
209 rm -f $targetdir/stderr
210 # stop all arrays, just incase some script left an array active.
211 $mdadm -Ssq 2> /dev
/null
212 mdadm
--zero $devlist 2> /dev
/null
213 mdadm
--zero $devlist 2> /dev
/null
214 # source script in a subshell, so it has access to our
215 # namespace, but cannot change it.
216 echo -ne "$script... "
217 if ( set -ex ; .
$script ) 2> $targetdir/log
218 then echo "succeeded"
219 else echo "FAILED - see $targetdir/log for details"