diff options
author | Kristof Provost <kp@FreeBSD.org> | 2021-12-13 17:13:42 +0000 |
---|---|---|
committer | Kristof Provost <kp@FreeBSD.org> | 2021-12-13 17:14:59 +0000 |
commit | 08851be187baa867dbccf424b9560934074a50f1 (patch) | |
tree | 22faf70c9886d0b0cf9dccfac545db0b44173447 | |
parent | 6964b77e598597789764ab6949a8031c14075a25 (diff) |
ndp tests: fix cleanup
Fix the cleanup function name so we actually remove our test jail and
interfaces.
Sponsored by: Rubicon Communications, LLC ("Netgate")
-rwxr-xr-x | tests/sys/netinet6/ndp.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sys/netinet6/ndp.sh b/tests/sys/netinet6/ndp.sh index 2b26ffd4c448..aa950d03518f 100755 --- a/tests/sys/netinet6/ndp.sh +++ b/tests/sys/netinet6/ndp.sh @@ -99,7 +99,7 @@ ndp_del_gu_success_body() { atf_check -o match:"2001:db8::2 \(2001:db8::2\) deleted" jexec ${jname} ndp -nd 2001:db8::2 } -ndp_del_success_cleanup() { +ndp_del_gu_success_cleanup() { vnet_cleanup } |