summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorStephen P. Smith <ischis2@cox.net>2019-01-29 03:50:15 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-01-29 17:40:08 (GMT)
commitb841d4ff438576fe0c3f69b7d48ba46a442f162b (patch)
treee1d89251ba3fe94708dbdc94fbaf5d0f3ec3795d /cache.h
parent038a87881067a629c79e70db41ef9a427ecbe223 (diff)
downloadgit-b841d4ff438576fe0c3f69b7d48ba46a442f162b.zip
git-b841d4ff438576fe0c3f69b7d48ba46a442f162b.tar.gz
git-b841d4ff438576fe0c3f69b7d48ba46a442f162b.tar.bz2
Add `human` format to test-tool
Add the human format support to the test tool so that GIT_TEST_DATE_NOW can be used to specify the current time. The get_time() helper function was created and and checks the GIT_TEST_DATE_NOW environment variable. If GIT_TEST_DATE_NOW is set, then that date is used instead of the date returned by by gettimeofday(). All calls to gettimeofday() were replaced by calls to get_time(). Renamed occurances of TEST_DATE_NOW to GIT_TEST_DATE_NOW since the variable is now used in the get binary and not just in the test-tool. Signed-off-by: Stephen P. Smith <ischis2@cox.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cache.h b/cache.h
index 8a6810e..34e54de 100644
--- a/cache.h
+++ b/cache.h
@@ -1453,6 +1453,8 @@ struct date_mode *date_mode_from_type(enum date_mode_type type);
const char *show_date(timestamp_t time, int timezone, const struct date_mode *mode);
void show_date_relative(timestamp_t time, int tz, const struct timeval *now,
struct strbuf *timebuf);
+void show_date_human(timestamp_t time, int tz, const struct timeval *now,
+ struct strbuf *timebuf);
int parse_date(const char *date, struct strbuf *out);
int parse_date_basic(const char *date, timestamp_t *timestamp, int *offset);
int parse_expiry_date(const char *date, timestamp_t *timestamp);