Path: blob/main/tests/sys/geom/class/union/conf.sh
39636 views
#!/bin/sh12class="union"3base=$(atf_get ident)45attach_md()6{7local test_md89test_md=$(mdconfig -a "$@") || atf_fail "failed to allocate md(4)"10echo $test_md >> $TEST_MDS_FILE || exit11echo $test_md12}1314gunion_test_cleanup()15{16if mount | grep -q "/gunionmnt"; then17umount gunionmnt18fi19if mount | grep -q "/uppermnt"; then20umount uppermnt21fi22if mount | grep -q "/lowermnt"; then23umount lowermnt24fi2526if [ -e "guniondev" ]; then27gunion destroy "$(cat guniondev)"28fi2930geom_test_cleanup31}3233gunion_test_setup()34{35geom_atf_test_setup36}3738ATF_TEST=true39. `dirname $0`/../geom_subr.sh404142