Path: blob/main/tools/regression/zfs/zpool/add/mirror.t
48378 views
#!/bin/sh
dir=`dirname $0`
. ${dir}/../../misc.sh
echo "1..15"
disks_create 10
names_create 1
expect_ok ${ZPOOL} create ${name0} mirror ${disk0} ${disk1}
expect_ok ${ZPOOL} add ${name0} mirror ${disk2} ${disk3}
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 " mirror ONLINE 0 0 0"
echo " ${disk0} ONLINE 0 0 0"
echo " ${disk1} ONLINE 0 0 0"
echo " mirror ONLINE 0 0 0"
echo " ${disk2} ONLINE 0 0 0"
echo " ${disk3} 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}
expect_ok ${ZPOOL} create ${name0} mirror ${disk0} ${disk1} ${disk2}
expect_ok ${ZPOOL} add ${name0} mirror ${disk3} ${disk4} ${disk5}
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 " mirror ONLINE 0 0 0"
echo " ${disk0} ONLINE 0 0 0"
echo " ${disk1} ONLINE 0 0 0"
echo " ${disk2} ONLINE 0 0 0"
echo " mirror ONLINE 0 0 0"
echo " ${disk3} ONLINE 0 0 0"
echo " ${disk4} ONLINE 0 0 0"
echo " ${disk5} 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}
expect_ok ${ZPOOL} create ${name0} mirror ${disk0} ${disk1} mirror ${disk2} ${disk3}
expect_ok ${ZPOOL} add ${name0} mirror ${disk4} ${disk5} mirror ${disk6} ${disk7} mirror ${disk8} ${disk9}
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 " mirror ONLINE 0 0 0"
echo " ${disk0} ONLINE 0 0 0"
echo " ${disk1} ONLINE 0 0 0"
echo " mirror ONLINE 0 0 0"
echo " ${disk2} ONLINE 0 0 0"
echo " ${disk3} ONLINE 0 0 0"
echo " mirror ONLINE 0 0 0"
echo " ${disk4} ONLINE 0 0 0"
echo " ${disk5} ONLINE 0 0 0"
echo " mirror ONLINE 0 0 0"
echo " ${disk6} ONLINE 0 0 0"
echo " ${disk7} ONLINE 0 0 0"
echo " mirror ONLINE 0 0 0"
echo " ${disk8} ONLINE 0 0 0"
echo " ${disk9} 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