From fdba2cdec47b1760422107c671feef1d2a57b8af Mon Sep 17 00:00:00 2001 From: Jeff King Date: Mon, 20 Jun 2016 17:10:29 -0400 Subject: t0006: rename test-date's "show" to "relative" The "show" tests are really only checking relative formats; we should make that more clear. This also frees up the "show" name to later check other formats. We could later fold "relative" into a more generic "show" command, but it's not worth it. Relative times are a special case already because we have to munge the concept of "now" in our tests. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- test-date.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test-date.c') diff --git a/test-date.c b/test-date.c index 63f373557e..8ebcdedbf0 100644 --- a/test-date.c +++ b/test-date.c @@ -1,11 +1,11 @@ #include "cache.h" static const char *usage_msg = "\n" -" test-date show [time_t]...\n" +" test-date relative [time_t]...\n" " test-date parse [date]...\n" " test-date approxidate [date]...\n"; -static void show_dates(char **argv, struct timeval *now) +static void show_relative_dates(char **argv, struct timeval *now) { struct strbuf buf = STRBUF_INIT; @@ -61,8 +61,8 @@ int main(int argc, char **argv) argv++; if (!*argv) usage(usage_msg); - if (!strcmp(*argv, "show")) - show_dates(argv+1, &now); + if (!strcmp(*argv, "relative")) + show_relative_dates(argv+1, &now); else if (!strcmp(*argv, "parse")) parse_dates(argv+1, &now); else if (!strcmp(*argv, "approxidate")) -- cgit v1.2.1