diff options
author | Damjan Marion <damarion@cisco.com> | 2023-03-16 16:55:38 +0000 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-03-17 16:34:06 +0000 |
commit | c7d3a5b9688e094fde987d0caff2bfb826e7e4e1 (patch) | |
tree | d4f87a4d7b8e80fb21c5cc817b862f68e9b55190 /src/vppinfra/test/toeplitz.c | |
parent | f8b61fb538046e287063864349d43e98b62b5faf (diff) |
vppinfra: auto-free test memory
Type: improvement
Change-Id: Ibc40a02c8c45fc8d9409c9a86fea7aaf70d9c048
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra/test/toeplitz.c')
-rw-r--r-- | src/vppinfra/test/toeplitz.c | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/vppinfra/test/toeplitz.c b/src/vppinfra/test/toeplitz.c index c1bd13fae8c..708fd0e60fc 100644 --- a/src/vppinfra/test/toeplitz.c +++ b/src/vppinfra/test/toeplitz.c @@ -253,8 +253,6 @@ test_clib_toeplitz_hash (clib_error_t *err) done: clib_toeplitz_hash_key_free (k); - test_mem_free (bigkey); - test_mem_free (bigdata); return err; } @@ -272,8 +270,6 @@ perftest_fixed_12byte (test_perf_t *tp) test_perf_event_disable (tp); clib_toeplitz_hash_key_free (k); - test_mem_free (data); - test_mem_free (res); } void __test_perf_fn @@ -290,8 +286,6 @@ perftest_fixed_36byte (test_perf_t *tp) test_perf_event_disable (tp); clib_toeplitz_hash_key_free (k); - test_mem_free (data); - test_mem_free (res); } void __test_perf_fn @@ -314,9 +308,6 @@ perftest_variable_size (test_perf_t *tp) test_perf_event_disable (tp); clib_toeplitz_hash_key_free (k); - test_mem_free (data); - test_mem_free (res); - test_mem_free (key); } REGISTER_TEST (clib_toeplitz_hash) = { @@ -430,11 +421,6 @@ test_clib_toeplitz_hash_x4 (clib_error_t *err) done: clib_toeplitz_hash_key_free (k); - test_mem_free (bigkey); - test_mem_free (bigdata0); - test_mem_free (bigdata1); - test_mem_free (bigdata2); - test_mem_free (bigdata3); return err; } @@ -459,14 +445,6 @@ perftest_fixed_12byte_x4 (test_perf_t *tp) test_perf_event_disable (tp); clib_toeplitz_hash_key_free (k); - test_mem_free (d0); - test_mem_free (d1); - test_mem_free (d2); - test_mem_free (d3); - test_mem_free (h0); - test_mem_free (h1); - test_mem_free (h2); - test_mem_free (h3); } void __test_perf_fn @@ -490,14 +468,6 @@ perftest_fixed_36byte_x4 (test_perf_t *tp) test_perf_event_disable (tp); clib_toeplitz_hash_key_free (k); - test_mem_free (d0); - test_mem_free (d1); - test_mem_free (d2); - test_mem_free (d3); - test_mem_free (h0); - test_mem_free (h1); - test_mem_free (h2); - test_mem_free (h3); } void __test_perf_fn @@ -527,15 +497,6 @@ perftest_variable_size_x4 (test_perf_t *tp) test_perf_event_disable (tp); clib_toeplitz_hash_key_free (k); - test_mem_free (key); - test_mem_free (d0); - test_mem_free (d1); - test_mem_free (d2); - test_mem_free (d3); - test_mem_free (h0); - test_mem_free (h1); - test_mem_free (h2); - test_mem_free (h3); } REGISTER_TEST (clib_toeplitz_hash_x4) = { |