blob: f3005804073efec178cdea644cce9a8a98f65cbd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
# $FreeBSD$
dir=`dirname $0`
. ${dir}/../../misc.sh
echo "1..5"
disks_create 2
names_create 1
expect_ok ${ZPOOL} create ${name0} ${disk0}
exp=`(
echo " pool: ${name0}"
echo " state: ONLINE"
echo " scrub: none requested"
echo "config:"
echo " NAME STATE READ WRITE CKSUM"
echo " ${name0} ONLINE 0 0 0"
echo " ${disk0} ONLINE 0 0 0"
echo "errors: No known data errors"
)`
expect "${exp}" ${ZPOOL} status ${name0}
expect_fl ${ZPOOL} create ${name0} ${disk1}
expect "${exp}" ${ZPOOL} status ${name0}
expect_ok ${ZPOOL} destroy ${name0}
disks_destroy
|