summaryrefslogtreecommitdiffstats
path: root/t/helper/test-reftable.c
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@google.com>2021-10-07 22:25:00 +0200
committerJunio C Hamano <gitster@pobox.com>2021-10-08 19:45:48 +0200
commitef8a6c62687984f2562463286e60ec1c66242b5c (patch)
treed4b9322abac1374099c652e77db52c14bf1a07c3 /t/helper/test-reftable.c
parentreftable: add error related functionality (diff)
downloadgit-ef8a6c62687984f2562463286e60ec1c66242b5c.tar.xz
git-ef8a6c62687984f2562463286e60ec1c66242b5c.zip
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>
Diffstat (limited to 't/helper/test-reftable.c')
-rw-r--r--t/helper/test-reftable.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/t/helper/test-reftable.c b/t/helper/test-reftable.c
new file mode 100644
index 0000000000..3b58e423e7
--- /dev/null
+++ b/t/helper/test-reftable.c
@@ -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;
+}