From 470a011511a41dcb893df12b33261030717d1e08 Mon Sep 17 00:00:00 2001 From: Klement Sekera Date: Wed, 8 Mar 2017 05:21:24 +0100 Subject: add cuckoo hash Change-Id: I78215041588014e9e5c3599c60471ced610735bb Signed-off-by: Klement Sekera --- src/vppinfra.am | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'src/vppinfra.am') diff --git a/src/vppinfra.am b/src/vppinfra.am index daca9954605..96766e8a757 100644 --- a/src/vppinfra.am +++ b/src/vppinfra.am @@ -13,7 +13,9 @@ lib_LTLIBRARIES += libvppinfra.la -TESTS = +TESTS = test_cuckoo_template \ + test_bihash_template \ + test_cuckoo_bihash if ENABLE_TESTS TESTS += test_bihash_template \ @@ -47,6 +49,8 @@ noinst_PROGRAMS = $(TESTS) check_PROGRAMS = $(TESTS) test_bihash_template_SOURCES = vppinfra/test_bihash_template.c +test_cuckoo_template_SOURCES = vppinfra/test_cuckoo_template.c +test_cuckoo_bihash_SOURCES = vppinfra/test_cuckoo_bihash.c test_dlist_SOURCES = vppinfra/test_dlist.c test_elf_SOURCES = vppinfra/test_elf.c test_elog_SOURCES = vppinfra/test_elog.c @@ -75,6 +79,8 @@ test_zvec_SOURCES = vppinfra/test_zvec.c # All unit tests use ASSERT for failure # So we'll need -DDEBUG to enable ASSERTs test_bihash_template_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG +test_cuckoo_template_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG +test_cuckoo_bihash_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG test_dlist_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG test_elf_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG test_elog_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG @@ -101,6 +107,8 @@ test_vec_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG test_zvec_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG test_bihash_template_LDADD = libvppinfra.la +test_cuckoo_template_LDADD = libvppinfra.la +test_cuckoo_bihash_LDADD = libvppinfra.la test_dlist_LDADD = libvppinfra.la test_elf_LDADD = libvppinfra.la test_elog_LDADD = libvppinfra.la @@ -127,6 +135,8 @@ test_vec_LDADD = libvppinfra.la test_zvec_LDADD = libvppinfra.la test_bihash_template_LDFLAGS = -static +test_cuckoo_template_LDFLAGS = -static +test_cuckoo_bihash_LDFLAGS = -static -lpthread test_dlist_LDFLAGS = -static test_elf_LDFLAGS = -static test_elog_LDFLAGS = -static -- cgit 1.2.3-korg