ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/src/trunk/tests/sys/geom/class/shsec/1_test.sh
Revision: 11980
Committed: Sun Jul 29 19:14:46 2018 UTC (5 years, 9 months ago) by laffer1
Content type: text/plain
File size: 592 byte(s)
Log Message:
add tests

File Contents

# Content
1 #!/bin/sh
2 # $MidnightBSD$
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 gshsec label $name /dev/${us0} /dev/${us1} /dev/${us2} 2>/dev/null || exit 1
13 devwait
14
15 # Size of created device should be 1MB - 512B.
16
17 mediasize=`diskinfo /dev/shsec/${name} | awk '{print $3}'`
18 if [ $mediasize -eq 1048064 ]; then
19 echo "ok 1"
20 else
21 echo "not ok 1"
22 fi
23 sectorsize=`diskinfo /dev/shsec/${name} | awk '{print $2}'`
24 if [ $sectorsize -eq 512 ]; then
25 echo "ok 2"
26 else
27 echo "not ok 2"
28 fi

Properties

Name Value
svn:eol-style native
svn:keywords MidnightBSD=%H
svn:mime-type text/plain