diff options
author | Damjan Marion <dmarion@me.com> | 2021-12-15 10:17:04 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-12-15 16:33:45 +0000 |
commit | 88019c40725704e6998625937c764d1d0c827975 (patch) | |
tree | e8fb855ab122e902d5eec559c751025f51050f70 /src/vppinfra/vector/test/test.h | |
parent | b7e4e6d1d24685cec2b1b8c72998661ae237fe94 (diff) |
vppinfra: toeplitz hash four in parallel
Type: improvement
Change-Id: Icb3f39f42d01c51d7b03543cb7d6b5dabad11866
Signed-off-by: Damjan Marion <dmarion@me.com>
Diffstat (limited to 'src/vppinfra/vector/test/test.h')
-rw-r--r-- | src/vppinfra/vector/test/test.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/vppinfra/vector/test/test.h b/src/vppinfra/vector/test/test.h index 4334dfa53a1..4511bf31fa9 100644 --- a/src/vppinfra/vector/test/test.h +++ b/src/vppinfra/vector/test/test.h @@ -59,8 +59,10 @@ typedef struct } test_main_t; extern test_main_t test_main; -#define __test_funct_fn static __clib_noinline __clib_section (".test_func") -#define __test_perf_fn static __clib_noinline __clib_section (".test_perf") +#define __test_funct_fn \ + static __clib_noinline __clib_noclone __clib_section (".test_func") +#define __test_perf_fn \ + static __clib_noinline __clib_noclone __clib_section (".test_perf") #define REGISTER_TEST(x) \ test_registration_t CLIB_MARCH_SFX (__test_##x); \ |