From: Han-Wen Nienhuys Date: Thu, 20 Jan 2022 15:12:07 +0000 (+0000) Subject: reftable: order unittests by complexity X-Git-Tag: v2.36.0-rc0~154^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fb222079d38d50d2169bcacc24bb0c216c45b801;p=thirdparty%2Fgit.git reftable: order unittests by complexity This is a more practical ordering when working on refactorings of the reftable code. Signed-off-by: Han-Wen Nienhuys Signed-off-by: Junio C Hamano --- diff --git a/t/helper/test-reftable.c b/t/helper/test-reftable.c index 26b03d7b78..1f0a28cbb6 100644 --- a/t/helper/test-reftable.c +++ b/t/helper/test-reftable.c @@ -3,15 +3,16 @@ 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); - merged_test_main(argc, argv); + tree_test_main(argc, argv); pq_test_main(argc, argv); - record_test_main(argc, argv); - refname_test_main(argc, argv); readwrite_test_main(argc, argv); + merged_test_main(argc, argv); stack_test_main(argc, argv); - tree_test_main(argc, argv); + refname_test_main(argc, argv); return 0; }