turns printfs back on
[freebsd-src/fkvm-freebsd.git] / tools / regression / geom_stripe / test-1.t
blob9b398f095e31020fc66a2ee358164316e482d610
1 #!/bin/sh
2 # $FreeBSD$
4 . `dirname $0`/conf.sh
6 echo "1..1"
8 us=45
10 mdconfig -a -t malloc -s 1M -u $us || exit 1
11 mdconfig -a -t malloc -s 2M -u `expr $us + 1` || exit 1
12 mdconfig -a -t malloc -s 3M -u `expr $us + 2` || exit 1
14 gstripe create -s 16384 $name /dev/md${us} /dev/md`expr $us + 1` /dev/md`expr $us + 2` || exit 1
15 devwait
17 # Size of created device should be 1MB * 3.
19 size=`diskinfo /dev/stripe/${name} | awk '{print $3}'`
21 if [ $size -eq 3145728 ]; then
22 echo "ok 1"
23 else
24 echo "not ok 1"
27 gstripe destroy $name
28 mdconfig -d -u $us
29 mdconfig -d -u `expr $us + 1`
30 mdconfig -d -u `expr $us + 2`