diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2023-05-16 13:25:48 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2023-05-16 13:25:48 +0200 |
commit | 3cf91fb9eb5e6aa51e63edcd237ee266373aec79 (patch) | |
tree | 094d80d17e747e6307b48125bdcc0250366c0be5 /nest/Makefile | |
parent | a8a64ca0fed41c78376b27880e934296bd3c3a7f (diff) |
Nest: Add tests and benchmark for FIB
Basic fib_get() / fib_find() test for random prefixes, FIB_WALK() test,
and benchmark for fib_find(). Also generalize and reuse some code from
trie tests.
Diffstat (limited to 'nest/Makefile')
-rw-r--r-- | nest/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/Makefile b/nest/Makefile index 163a1199..5a244c75 100644 --- a/nest/Makefile +++ b/nest/Makefile @@ -9,6 +9,6 @@ $(o)proto-build.c: Makefile $(lastword $(MAKEFILE_LIST)) $(objdir)/.dir-stamp prepare: $(o)proto-build.c -tests_src := a-set_test.c a-path_test.c +tests_src := a-set_test.c a-path_test.c rt-fib_test.c tests_targets := $(tests_targets) $(tests-target-files) tests_objs := $(tests_objs) $(src-o-files) |