opnsense-src/tests/sys/mac/ipacl/utils.subr
Warner Losh d0b2dbfa0e Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2023-08-16 11:55:03 -06:00

17 lines
236 B
Text

# Utility functions for mac_ipacl tests
. $(atf_get_srcdir)/../../common/vnet.subr
ipacl_test_init()
{
vnet_init
if ! kldstat -q -m mac_ipacl; then
atf_skip "mac_ipacl is not loaded"
fi
}
ipacl_test_cleanup()
{
vnet_cleanup
}