diff options
Diffstat (limited to 'tests/sys/geom/class/raid3/conf.sh')
-rw-r--r-- | tests/sys/geom/class/raid3/conf.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/sys/geom/class/raid3/conf.sh b/tests/sys/geom/class/raid3/conf.sh new file mode 100644 index 0000000..f1b270a --- /dev/null +++ b/tests/sys/geom/class/raid3/conf.sh @@ -0,0 +1,15 @@ +#!/bin/sh +# $FreeBSD$ + +name="$(mktemp -u graid3.XXXXXX)" +class="raid3" +base=`basename $0` + +graid3_test_cleanup() +{ + [ -c /dev/$class/$name ] && graid3 stop $name + geom_test_cleanup +} +trap graid3_test_cleanup ABRT EXIT INT TERM + +. `dirname $0`/../geom_subr.sh |