t/helper: keep test-tool command list sorted
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Nguyễn Thái Ngọc Duy committed
Sep 9, 2018 at 19:36 UTC
a0fe6e6e87382f0b15dd39295f4fa9faf78d1561
3 files changed
+3
-3
Makefile
+1
-1
@@ -729,8 +729,8 @@ TEST_BUILTINS_OBJS += test-repository.o
729
TEST_BUILTINS_OBJS += test-revision-walking.o
730
TEST_BUILTINS_OBJS += test-run-command.o
731
TEST_BUILTINS_OBJS += test-scrap-cache-tree.o
732
-TEST_BUILTINS_OBJS += test-sha1-array.o
732
TEST_BUILTINS_OBJS += test-sha1.o
733
+TEST_BUILTINS_OBJS += test-sha1-array.o
734
TEST_BUILTINS_OBJS += test-sigchain.o
735
TEST_BUILTINS_OBJS += test-strcmp-offset.o
736
TEST_BUILTINS_OBJS += test-string-list.o
t/helper/test-tool.c
+1
-1
@@ -34,8 +34,8 @@ static struct test_cmd cmds[] = {
34
{ "revision-walking", cmd__revision_walking },
35
{ "run-command", cmd__run_command },
36
{ "scrap-cache-tree", cmd__scrap_cache_tree },
37
- { "sha1-array", cmd__sha1_array },
37
{ "sha1", cmd__sha1 },
38
+ { "sha1-array", cmd__sha1_array },
39
{ "sigchain", cmd__sigchain },
40
{ "strcmp-offset", cmd__strcmp_offset },
41
{ "string-list", cmd__string_list },
t/helper/test-tool.h
+1
-1
@@ -30,8 +30,8 @@ int cmd__repository(int argc, const char **argv);
30
int cmd__revision_walking(int argc, const char **argv);
31
int cmd__run_command(int argc, const char **argv);
32
int cmd__scrap_cache_tree(int argc, const char **argv);
33
-int cmd__sha1_array(int argc, const char **argv);
33
int cmd__sha1(int argc, const char **argv);
34
+int cmd__sha1_array(int argc, const char **argv);
35
int cmd__sigchain(int argc, const char **argv);
36
int cmd__strcmp_offset(int argc, const char **argv);
37
int cmd__string_list(int argc, const char **argv);