summaryrefslogtreecommitdiff
path: root/test-date.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2010-07-04 06:48:35 -0400
committerJunio C Hamano <gitster@pobox.com>2010-07-05 11:54:50 -0700
commit6b097788f88a29d6e171af7a9e87117cf992e833 (patch)
tree84766fade9042215098fedba4aa698b6190dee51 /test-date.c
parent2c64034491e302fa12ac86365dd872d9a75dc855 (diff)
downloadgit-6b097788f88a29d6e171af7a9e87117cf992e833.tar.gz
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 <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'test-date.c')
-rw-r--r--test-date.c9
1 files changed, 6 insertions, 3 deletions
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);
}
}