mirror of
https://github.com/opnsense/src.git
synced 2026-04-08 10:53:24 -04:00
17 lines
236 B
Text
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
|
|
}
|