diff options
Diffstat (limited to 'benchtests/bench-memset.c')
-rw-r--r-- | benchtests/bench-memset.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/benchtests/bench-memset.c b/benchtests/bench-memset.c index 107e2b7494..724c105935 100644 --- a/benchtests/bench-memset.c +++ b/benchtests/bench-memset.c @@ -132,7 +132,10 @@ do_test (json_ctx_t *json_ctx, size_t align, int c, size_t len) json_array_begin (json_ctx, "timings"); FOR_EACH_IMPL (impl, 0) - do_one_test (json_ctx, impl, (CHAR *) (buf1) + align, c, len); + { + do_one_test (json_ctx, impl, (CHAR *) (buf1) + align, c, len); + realloc_bufs (); + } json_array_end (json_ctx); json_element_object_end (json_ctx); |