From 6b097788f88a29d6e171af7a9e87117cf992e833 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Sun, 4 Jul 2010 06:48:35 -0400 Subject: t0006: test timezone parsing Previously, test-date simply ignored the parsed timezone and told show_date() to use UTC. Instead, let's print out what we actually parsed. While we're at it, let's make it easy for tests to work in a specific timezone. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- test-date.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'test-date.c') diff --git a/test-date.c b/test-date.c index a9e705f79a..ac6854a541 100644 --- a/test-date.c +++ b/test-date.c @@ -21,12 +21,15 @@ static void parse_dates(char **argv, struct timeval *now) for (; *argv; argv++) { char result[100]; time_t t; + int tz; result[0] = 0; parse_date(*argv, result, sizeof(result)); - t = strtoul(result, NULL, 0); - printf("%s -> %s\n", *argv, - t ? show_date(t, 0, DATE_ISO8601) : "bad"); + if (sscanf(result, "%ld %d", &t, &tz) == 2) + printf("%s -> %s\n", + *argv, show_date(t, tz, DATE_ISO8601)); + else + printf("%s -> bad\n", *argv); } } -- cgit v1.2.3