diff options
author | Han-Wen Nienhuys <hanwen@google.com> | 2022-01-20 15:12:07 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-01-20 11:31:53 -0800 |
commit | fb222079d38d50d2169bcacc24bb0c216c45b801 (patch) | |
tree | 685fa57831bc364d5621d75744823f4f2f3d6efb /t/helper | |
parent | reftable: all xxx_free() functions accept NULL arguments (diff) | |
download | tgif-fb222079d38d50d2169bcacc24bb0c216c45b801.tar.xz |
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 <hanwen@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/helper')
-rw-r--r-- | t/helper/test-reftable.c | 9 |
1 files changed, 5 insertions, 4 deletions
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; } |