In the preceding commit we have disabled name checks in the "reftable"
backend. These checks were responsible for verifying multiple things
when writing records to the reftable stack:
- Detecting file/directory conflicts. Starting with the preceding
commits this is now handled by the reftable backend itself via
`refs_verify_refname_available()`.
- Validating refnames. This is handled by `check_refname_format()` in
the generic ref transacton layer.
The code in the reftable library is thus not used anymore and likely to
bitrot over time. Remove it.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
23 lines
543 B
C
23 lines
543 B
C
#include "reftable/system.h"
|
|
#include "reftable/reftable-tests.h"
|
|
#include "test-tool.h"
|
|
|
|
int cmd__reftable(int argc, const char **argv)
|
|
{
|
|
/* test from simple to complex. */
|
|
basics_test_main(argc, argv);
|
|
record_test_main(argc, argv);
|
|
block_test_main(argc, argv);
|
|
tree_test_main(argc, argv);
|
|
pq_test_main(argc, argv);
|
|
readwrite_test_main(argc, argv);
|
|
merged_test_main(argc, argv);
|
|
stack_test_main(argc, argv);
|
|
return 0;
|
|
}
|
|
|
|
int cmd__dump_reftable(int argc, const char **argv)
|
|
{
|
|
return reftable_dump_main(argc, (char *const *)argv);
|
|
}
|