mirror of
https://github.com/opnsense/src.git
synced 2026-04-01 15:35:10 -04:00
49 lines
1.4 KiB
Perl
49 lines
1.4 KiB
Perl
|
|
#!/bin/sh
|
||
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
dir=`dirname $0`
|
||
|
|
. ${dir}/../../misc.sh
|
||
|
|
|
||
|
|
echo "1..10"
|
||
|
|
|
||
|
|
disks_create 4
|
||
|
|
names_create 1
|
||
|
|
|
||
|
|
expect_ok ${ZPOOL} create ${name0} ${disk0}
|
||
|
|
expect_ok ${ZPOOL} replace ${name0} ${disk0} ${disk1}
|
||
|
|
wait_for_resilver ${name0}
|
||
|
|
exp=`(
|
||
|
|
echo " pool: ${name0}"
|
||
|
|
echo " state: ONLINE"
|
||
|
|
echo " scrub: (scrub|resilver) completed after [0-9]+h[0-9]+m with 0 errors on .*"
|
||
|
|
echo "config:"
|
||
|
|
echo " NAME STATE READ WRITE CKSUM"
|
||
|
|
echo " ${name0} ONLINE 0 0 0"
|
||
|
|
echo " ${disk1} ONLINE 0 0 0( [0-9.]+[A-Z] resilvered)?"
|
||
|
|
echo "errors: No known data errors"
|
||
|
|
)`
|
||
|
|
expect "${exp}" ${ZPOOL} status ${name0}
|
||
|
|
expect_ok ${ZPOOL} destroy ${name0}
|
||
|
|
expect_fl ${ZPOOL} status -x ${name0}
|
||
|
|
|
||
|
|
expect_ok ${ZPOOL} create ${name0} ${disk0} ${disk1} ${disk2}
|
||
|
|
expect_ok ${ZPOOL} replace ${name0} ${disk1} ${disk3}
|
||
|
|
wait_for_resilver ${name0}
|
||
|
|
exp=`(
|
||
|
|
echo " pool: ${name0}"
|
||
|
|
echo " state: ONLINE"
|
||
|
|
echo " scrub: (scrub|resilver) completed after [0-9]+h[0-9]+m with 0 errors on .*"
|
||
|
|
echo "config:"
|
||
|
|
echo " NAME STATE READ WRITE CKSUM"
|
||
|
|
echo " ${name0} ONLINE 0 0 0"
|
||
|
|
echo " ${disk0} ONLINE 0 0 0"
|
||
|
|
echo " ${disk3} ONLINE 0 0 0( [0-9.]+[A-Z] resilvered)?"
|
||
|
|
echo " ${disk2} ONLINE 0 0 0"
|
||
|
|
echo "errors: No known data errors"
|
||
|
|
)`
|
||
|
|
expect "${exp}" ${ZPOOL} status ${name0}
|
||
|
|
expect_ok ${ZPOOL} destroy ${name0}
|
||
|
|
expect_fl ${ZPOOL} status -x ${name0}
|
||
|
|
|
||
|
|
disks_destroy
|