
reftable/merged_test.c exercises the functions defined in reftable/merged.{c, h}. Migrate reftable/merged_test.c to the unit testing framework. Migration involves refactoring the tests to use the unit testing framework instead of reftable's test framework and renaming the tests according to unit-tests' naming conventions. Also, move strbuf_add_void() and noop_flush() from reftable/test_framework.c to the ported test. This is because both these functions are used in the merged tests and reftable/test_framework.{c, h} is not #included in the ported test. Mentored-by: Patrick Steinhardt <ps@pks.im> Mentored-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Chandra Pratap <chandrapratap3519@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
22 lines
656 B
C
22 lines
656 B
C
/*
|
|
Copyright 2020 Google LLC
|
|
|
|
Use of this source code is governed by a BSD-style
|
|
license that can be found in the LICENSE file or at
|
|
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 pq_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 tree_test_main(int argc, const char **argv);
|
|
int reftable_dump_main(int argc, char *const *argv);
|
|
|
|
#endif
|