]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - tools/regression/geom_raid3/test-1.t
MFC r293438:
[FreeBSD/stable/10.git] / tools / regression / geom_raid3 / test-1.t
1 #!/bin/sh
2 # $FreeBSD$
3
4 . `dirname $0`/conf.sh
5
6 echo "1..2"
7
8 us0=$(attach_md -t malloc -s 1M) || exit 1
9 us1=$(attach_md -t malloc -s 2M) || exit 1
10 us2=$(attach_md -t malloc -s 3M) || exit 1
11
12 graid3 label $name /dev/${us0} /dev/${us1} /dev/${us2} 2>/dev/null || exit 1
13 devwait
14
15 # Size of created device should be 2MB - 1024B.
16
17 mediasize=`diskinfo /dev/raid3/${name} | awk '{print $3}'`
18 if [ $mediasize -eq 2096128 ]; then
19         echo "ok 1"
20 else
21         echo "not ok 1"
22 fi
23 sectorsize=`diskinfo /dev/raid3/${name} | awk '{print $2}'`
24 if [ $sectorsize -eq 1024 ]; then
25         echo "ok 2"
26 else
27         echo "not ok 2"
28 fi