reftable: utility functions

This commit provides basic utility classes for the reftable library.

Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Helped-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Han-Wen Nienhuys
2021-10-07 20:25:00 +00:00
committed by Junio C Hamano
parent 890044708d
commit ef8a6c6268
16 changed files with 570 additions and 7 deletions

9
t/helper/test-reftable.c Normal file
View File

@ -0,0 +1,9 @@
#include "reftable/reftable-tests.h"
#include "test-tool.h"
int cmd__reftable(int argc, const char **argv)
{
basics_test_main(argc, argv);
return 0;
}