On Tue, 29 Apr 2025 at 00:27, Junio C Hamano <gitster@xxxxxxxxx> wrote: > > Seyi Kuforiji <kuforiji98@xxxxxxxxx> writes: > > > Helper functions defined in `t/unit-tests/lib-reftable.{c,h}` are > > required for the reftable-related test files to run efficeintly. In the > > current implementation these functions are designed to conform with our > > homegrown unit-testing structure. So in other to convert the reftable > > test files, there is need for a clar specific implementation of these > > helper functions. > > > > type cast `for (size_t i = 0; i < (size_t)stats->ref_stats.blocks; i++)` > > Adapt functions in lib-reftable.{c,h} to use clar. These functions > > conform with the clar testing framework and become available for all > > reftable-related test files implemented using the clar testing > > framework, which requires them. This will be used by subsequent commits. > > > > Signed-off-by: Seyi Kuforiji <kuforiji98@xxxxxxxxx> > > --- > > Makefile | 4 ++-- > > t/meson.build | 4 ++-- > > t/unit-tests/lib-reftable.c | 26 +++++++++++++------------- > > t/unit-tests/lib-reftable.h | 6 +++--- > > 4 files changed, 20 insertions(+), 20 deletions(-) > > With this step (and nothing else, as this is the first patch in the > series) applied to 'master', I see tons of these errors: > > CC t/unit-tests/t-reftable-merged.o > t/unit-tests/t-reftable-merged.c: In function 'merged_table_from_records': > t/unit-tests/t-reftable-merged.c:37:17: error: implicit declaration of function 't_reftable_write_to_buf'; did you mean 'cl_reftable_write_to_buf'? [-Wimplicit-function-declaration] > 37 | t_reftable_write_to_buf(&buf[i], refs[i], sizes[i], NULL, 0, &opts); > | ^~~~~~~~~~~~~~~~~~~~~~~ > | cl_reftable_write_to_buf > Hi Junio, Yes, that is expected, as there are `reftable` test files that depend on the old function names. I navigated this by temporarily porting the functions into the `t/unit-tests/unit-test{c,h}` file to convert the files and moved them back as soon as I was done converting them. Would it be better to leave them in `t/unit-tests/unit-test{c,h}` and then create a final patch that migrates them into the `t/unit-tests/lib-reftable{c,h} file? Thanks Seyi