#!/bin/sh
class="uzip"
base=`basename $0`
uzip_test_cleanup()
{
if [ -n "$mntpoint" ]; then
umount $mntpoint
rmdir $mntpoint
fi
geom_test_cleanup
}
trap uzip_test_cleanup ABRT EXIT INT TERM
. `dirname $0`/../geom_subr.sh
mntpoint=$(mktemp -d tmp.XXXXXX) || exit