diff options
author | Tom Jones <thj@FreeBSD.org> | 2020-07-22 13:49:54 +0000 |
---|---|---|
committer | Tom Jones <thj@FreeBSD.org> | 2020-07-22 13:49:54 +0000 |
commit | 3b01bf881c848ba0be72fc74ba5eaa58c66c35e1 (patch) | |
tree | 09470d278075304cef4acdf08cd63a1bff4548b9 /sbin/route/tests/Makefile | |
parent | 9af25ea3bb5e84846eeb9f39a064bd0a31851cb6 (diff) | |
download | src-3b01bf881c848ba0be72fc74ba5eaa58c66c35e1.tar.gz src-3b01bf881c848ba0be72fc74ba5eaa58c66c35e1.zip |
Add tests for "add", "change" and "delete" functionality of /sbin/route.
Add tests to cover "add", "change" and "delete" functionality of /sbin/route
for ipv4 and ipv6. These tests for the existing route tool are the first step
towards creating libroute.
Submitted by: Ahsan Barkati
Sponsored by: Google, Inc. (GSoC 2020)
Reviewed by: kp, thj
Approved by: bz (mentor)
MFC after: 1 month
Differential Revision: https://reviews.freebsd.org/D25220
Notes
Notes:
svn path=/head/; revision=363417
Diffstat (limited to 'sbin/route/tests/Makefile')
-rw-r--r-- | sbin/route/tests/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sbin/route/tests/Makefile b/sbin/route/tests/Makefile new file mode 100644 index 000000000000..eb278981f8cd --- /dev/null +++ b/sbin/route/tests/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +PACKAGE= tests + +ATF_TESTS_SH+= \ + basic + +${PACKAGE}FILES+= \ + utils.subr + +.include <bsd.test.mk> |