 56346ba24e
			
		
	
	56346ba24e
	
	
	
		
			
			Basic unit tests for reftable have been reimplemented under the unit test framework. * cp/reftable-unit-test: t: improve the test-case for parse_names() t: add test for put_be16() t: move tests from reftable/record_test.c to the new unit test t: move tests from reftable/stack_test.c to the new unit test t: move reftable/basics_test.c to the unit testing framework
		
			
				
	
	
		
			22 lines
		
	
	
		
			512 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			512 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. */
 | |
| 	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);
 | |
| }
 |