]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - tests/sys/geom/class/nop/1_test.sh
MFC r294973:
[FreeBSD/stable/10.git] / tests / sys / geom / class / nop / 1_test.sh
1 #!/bin/sh
2 # $FreeBSD$
3
4 . `dirname $0`/conf.sh
5
6 echo "1..1"
7
8 us=$(attach_md -t malloc -s 1M) || exit 1
9
10 gnop create /dev/${us} || exit 1
11
12 # Size of created device should be 1MB.
13
14 size=`diskinfo /dev/${us}.nop | awk '{print $3}'`
15
16 if [ $size -eq 1048576 ]; then
17         echo "ok 1"
18 else
19         echo "not ok 1"
20 fi