From 0e496492d26a8f7f360b6fad1aed2cae74403fa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Th=C3=A1i=20Ng=E1=BB=8Dc=20Duy?= Date: Sat, 24 Mar 2018 08:44:31 +0100 Subject: t/helper: merge test-chmtime into test-tool MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- t/helper/test-chmtime.c | 15 ++++++++------- t/helper/test-tool.c | 1 + t/helper/test-tool.h | 2 ++ 3 files changed, 11 insertions(+), 7 deletions(-) (limited to 't/helper') diff --git a/t/helper/test-chmtime.c b/t/helper/test-chmtime.c index e760256406..1790ceab51 100644 --- a/t/helper/test-chmtime.c +++ b/t/helper/test-chmtime.c @@ -5,28 +5,29 @@ * * The mtime can be changed to an absolute value: * - * test-chmtime = file... + * test-tool chmtime = file... * * Relative to the current time as returned by time(3): * - * test-chmtime =+ (or =-) file... + * test-tool chmtime =+ (or =-) file... * * Or relative to the current mtime of the file: * - * test-chmtime file... - * test-chmtime + (or -) file... + * test-tool chmtime file... + * test-tool chmtime + (or -) file... * * Examples: * * To just print the mtime use --verbose and set the file mtime offset to 0: * - * test-chmtime -v +0 file + * test-tool chmtime -v +0 file * * To set the mtime to current time: * - * test-chmtime =+0 file + * test-tool chmtime =+0 file * */ +#include "test-tool.h" #include "git-compat-util.h" #include @@ -56,7 +57,7 @@ static int timespec_arg(const char *arg, long int *set_time, int *set_eq) return 1; } -int cmd_main(int argc, const char **argv) +int cmd__chmtime(int argc, const char **argv) { static int verbose; diff --git a/t/helper/test-tool.c b/t/helper/test-tool.c index da1dd6621c..0b1abe1ea2 100644 --- a/t/helper/test-tool.c +++ b/t/helper/test-tool.c @@ -7,6 +7,7 @@ struct test_cmd { }; static struct test_cmd cmds[] = { + { "chmtime", cmd__chmtime }, }; int cmd_main(int argc, const char **argv) diff --git a/t/helper/test-tool.h b/t/helper/test-tool.h index 6ce57ae0cc..3a35e70e79 100644 --- a/t/helper/test-tool.h +++ b/t/helper/test-tool.h @@ -1,4 +1,6 @@ #ifndef __TEST_TOOL_H__ #define __TEST_TOOL_H__ +int cmd__chmtime(int argc, const char **argv); + #endif -- cgit v1.2.1