From: Jeff King Date: Sat, 17 Aug 2024 08:24:06 +0000 (-0400) Subject: reftable: drop obsolete test function declarations X-Git-Tag: v2.47.0-rc0~94^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=561666cc4cd84799334a68b16d0dd204f000efa8;p=thirdparty%2Fgit.git reftable: drop obsolete test function declarations These functions were moved to the unit test framework in ba9661b457 (t: move reftable/record_test.c to the unit testing framework, 2024-07-02) and b34116a30c (t: move reftable/basics_test.c to the unit testing framework, 2024-05-29). The declarations in reftable-tests.h are leftover cruft. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/reftable/reftable-tests.h b/reftable/reftable-tests.h index 4b666810af..941e5dd011 100644 --- a/reftable/reftable-tests.h +++ b/reftable/reftable-tests.h @@ -9,9 +9,7 @@ https://developers.google.com/open-source/licenses/bsd #ifndef REFTABLE_TESTS_H #define REFTABLE_TESTS_H -int basics_test_main(int argc, const char **argv); int block_test_main(int argc, const char **argv); -int record_test_main(int argc, const char **argv); int readwrite_test_main(int argc, const char **argv); int stack_test_main(int argc, const char **argv); int reftable_dump_main(int argc, char *const *argv);