refactor test-date interface
commit4f6552ea4cf2f1fdfd850b17b25864c761d14580
authorJeff King <peff@peff.net>
Mon, 31 Aug 2009 02:26:46 +0000 (30 22:26 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 31 Aug 2009 05:04:46 +0000 (30 22:04 -0700)
treed39a0e074d3b5c259aabe396c9202ebd2b3f711b
parent33012fc429af24fee64f39406d401662feb947a8
refactor test-date interface

The test-date program goes back to the early days of git,
where it was presumably used to do manual sanity checks on
changes to the date code. However, it is not actually used
by the test suite to do any sort of automatic of systematic
tests.

This patch refactors the interface to the program to try to
make it more suitable for use by the test suite. There
should be no fallouts to changing the interface since it is
not actually installed and is not internally called by any
other programs.

The changes are:

  - add a "mode" parameter so the caller can specify which
    operation to test

  - add a mode to test relative date output from show_date

  - allow faking a fixed time via the TEST_DATE_NOW
    environment variable, which allows consistent automated
    testing

  - drop the use of ctime for showing dates in favor of our
    internal iso8601 printing routines. The ctime output is
    somewhat redundant (because of the day-of-week) which
    makes writing test cases more annoying.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
test-date.c