diff options
author | David Lamparter <equinox@diac24.net> | 2019-06-06 19:35:03 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2019-06-06 20:59:54 +0200 |
commit | 874035be4e65a889525b0380ce686b64e7ff5bb0 (patch) | |
tree | c296aa18b6dd4f1d195d08f74a149a09456c51e6 /tests/subdir.am | |
parent | lib: add optimized inet_ntop() (diff) | |
download | frr-874035be4e65a889525b0380ce686b64e7ff5bb0.tar.xz frr-874035be4e65a889525b0380ce686b64e7ff5bb0.zip |
tests: exercise frr_inet_ntop()
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to '')
-rw-r--r-- | tests/subdir.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/subdir.am b/tests/subdir.am index bbab8cd86..99f5f87fa 100644 --- a/tests/subdir.am +++ b/tests/subdir.am @@ -56,6 +56,7 @@ check_PROGRAMS = \ tests/lib/test_idalloc \ tests/lib/test_memory \ tests/lib/test_nexthop_iter \ + tests/lib/test_ntop \ tests/lib/test_printfrr \ tests/lib/test_privs \ tests/lib/test_ringbuf \ @@ -233,6 +234,10 @@ tests_lib_test_nexthop_iter_CFLAGS = $(TESTS_CFLAGS) tests_lib_test_nexthop_iter_CPPFLAGS = $(TESTS_CPPFLAGS) tests_lib_test_nexthop_iter_LDADD = $(ALL_TESTS_LDADD) tests_lib_test_nexthop_iter_SOURCES = tests/lib/test_nexthop_iter.c tests/helpers/c/prng.c +tests_lib_test_ntop_CFLAGS = $(TESTS_CFLAGS) +tests_lib_test_ntop_CPPFLAGS = $(TESTS_CPPFLAGS) +tests_lib_test_ntop_LDADD = # none +tests_lib_test_ntop_SOURCES = tests/lib/test_ntop.c tests/helpers/c/prng.c tests_lib_test_printfrr_CFLAGS = $(TESTS_CFLAGS) tests_lib_test_printfrr_CPPFLAGS = $(TESTS_CPPFLAGS) tests_lib_test_printfrr_LDADD = $(ALL_TESTS_LDADD) @@ -324,6 +329,7 @@ EXTRA_DIST += \ tests/lib/northbound/test_oper_data.refout \ tests/lib/test_atomlist.py \ tests/lib/test_nexthop_iter.py \ + tests/lib/test_ntop.py \ tests/lib/test_printfrr.py \ tests/lib/test_ringbuf.py \ tests/lib/test_srcdest_table.py \ |