
The tests for "pq" part of reftable library got rewritten to use the unit test framework. * cp/unit-test-reftable-pq: t-reftable-pq: add tests for merged_iter_pqueue_top() t-reftable-pq: add test for index based comparison t-reftable-pq: make merged_iter_pqueue_check() callable by reference t-reftable-pq: make merged_iter_pqueue_check() static t: move reftable/pq_test.c to the unit testing framework reftable: change the type of array indices to 'size_t' in reftable/pq.c reftable: remove unnecessary curly braces in reftable/pq.c
19 lines
423 B
C
19 lines
423 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. */
|
|
block_test_main(argc, argv);
|
|
tree_test_main(argc, argv);
|
|
readwrite_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);
|
|
}
|