From e3e355507508ccbe1a14b78e0654775af8d932fe Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Thu, 6 May 2021 17:34:49 +0200 Subject: vppinfra: add universal array mask_compare and compress funcs Type: improvement Change-Id: I6d812339f626ea630ad9354632d2f9506122d379 Signed-off-by: Damjan Marion --- src/vppinfra/CMakeLists.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src/vppinfra/CMakeLists.txt') diff --git a/src/vppinfra/CMakeLists.txt b/src/vppinfra/CMakeLists.txt index dd3690bdbf3..6da1fa2a0a1 100644 --- a/src/vppinfra/CMakeLists.txt +++ b/src/vppinfra/CMakeLists.txt @@ -261,4 +261,22 @@ if(VPP_BUILD_VPPINFRA_TESTS) LINK_LIBRARIES vppinfra Threads::Threads ) endforeach() + +set(test_files + test_vector_funcs_compress.c + test_vector_funcs_mask_compare.c +) + +add_vpp_executable(test_vector_funcs + SOURCES + test_vector_funcs.c + ${test_files} + LINK_LIBRARIES vppinfra +) + +vpp_library_set_multiarch_sources(test_vector_funcs + SOURCES + ${test_files} +) + endif(VPP_BUILD_VPPINFRA_TESTS) -- cgit 1.2.3-korg