summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* TODO: Add tasksP. J. McDermott2022-03-271-0/+9
|
* datetime: Change sanity checksP. J. McDermott2022-03-231-4/+4
| | | | | | Check if the year is earlier than 1900 instead of 1970. Step one of eliminating timegm().
* datetime: s/ ;/;/P. J. McDermott2022-03-231-2/+2
|
* datetime: Add glibc timegm() feature test macrosP. J. McDermott2022-03-221-0/+3
|
* Update copyright yearsP. J. McDermott2022-03-226-6/+5
|
* .gitignore: Exclude FORMATSP. J. McDermott2022-03-221-0/+1
|
* datetime, formats: Conform to strptime() space reqP. J. McDermott2022-03-223-22/+56
|
* datetime: Fix initial formatting buffer sizeP. J. McDermott2022-03-221-1/+1
|
* datetime: Don't forget to copy NUL chars to bufferP. J. McDermott2022-03-221-6/+6
|
* datetime: Copy time-only & misc formats to bufferP. J. McDermott2022-03-221-3/+12
|
* formats: Reformat commentP. J. McDermott2022-03-221-2/+7
|
* formats: Remove extra space in some misc formatsP. J. McDermott2022-03-221-4/+4
|
* TODO: AddP. J. McDermott2022-03-211-0/+2
|
* README, build: Generate list of formatsP. J. McDermott2022-03-214-74/+25
|
* build: Simplify dist-hookP. J. McDermott2022-03-211-8/+6
|
* formats: Add formats with "%a." and "%b."P. J. McDermott2022-03-213-1/+98
|
* formats: Lengthen date format stringsP. J. McDermott2022-03-211-132/+132
|
* datetime: Move formats into another fileP. J. McDermott2022-03-214-195/+217
|
* TODO: AddP. J. McDermott2022-03-201-0/+4
|
* datetime: Print full weekday and month namesP. J. McDermott2022-03-202-0/+181
|
* datetime: Lengthen commentsP. J. McDermott2022-03-201-46/+46
|
* datetime: Add formats with "."P. J. McDermott2022-03-203-1/+14
|
* tests: Add format listing testP. J. McDermott2022-03-204-1/+107
|
* main: Replace strtol() calls with sscanf()P. J. McDermott2022-03-203-27/+9
|
* Add --disable-tests to shrink executable sizeP. J. McDermott2022-03-205-11/+58
|
* TODO: Add tasksP. J. McDermott2022-03-201-0/+7
|
* main: Update copyright years in version outputP. J. McDermott2022-03-191-1/+1
|
* datetime: Sanity check parsing resultsP. J. McDermott2022-03-192-12/+37
| | | | | | | | | | | | | | | | | | | Previously, "0000 1970-01-01" was parsed as 00:00:19 70-01-01. Fixes: not ok 614 - 0000 1970-01-01 FAIL: tests/parse.sh 614 - 0000 1970-01-01 # Failed test '0000 1970-01-01' # got: '-59958143981' # expected: '0' ok 615 - 1970/01/01 0000 PASS: tests/parse.sh 615 - 1970/01/01 0000 not ok 616 - 0000 1970/01/01 FAIL: tests/parse.sh 616 - 0000 1970/01/01 # Failed test '0000 1970/01/01' # got: '-59958143981' # expected: '0'
* datetime: Add function to get seconds since EpochP. J. McDermott2022-03-193-14/+26
| | | | And use it in main().
* datetime: Update new _datetime_normalize() callP. J. McDermott2022-03-191-1/+1
|
* main: Pass NULL to time()P. J. McDermott2022-03-191-2/+2
| | | | | | | | | | | | | | If the argument points outside the accessible address space, Linux's time() system call returns a negative value. [1] But since this is indistinguishable from a successful report that the time is before the Epoch, glibc never actually sets errno. The Linux man-pages project recommends: "The tloc argument is obsolescent and should always be NULL in new code. When tloc is NULL, the call cannot fail." [2] [1]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/kernel/time/time.c [2]: https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/commit/man2/time.2?id=300c07ddd873fa1abbff96262ec365271e429dab
* Merge branch 'feature/tests'P. J. McDermott2022-03-1911-38/+1077
|\
| * tests: Print format listing as TAP diagnosticsP. J. McDermott2022-03-191-3/+7
| |
| * main: Populate day of week in "now" timeP. J. McDermott2022-03-191-28/+33
| | | | | | | | Needed for format listing.
| * main: Allow faking current timeP. J. McDermott2022-03-192-20/+62
| | | | | | | | Drop use of faketime in tests.
| * datetime: Get now (struct tm) from callerP. J. McDermott2022-03-183-19/+18
| |
| * datetime: Move & unify time() & localtime() callsP. J. McDermott2022-03-181-6/+3
| |
| * tests: Use @'s -F option to auto test all fmtsP. J. McDermott2022-03-171-79/+20
| |
| * tests: WIP parse testP. J. McDermott2022-03-171-7/+103
| |
| * tests: Add (stub) parse testP. J. McDermott2022-03-174-1/+40
| |
| * tests/aux/tap-functions.sh: Drop `set -x`P. J. McDermott2022-03-171-2/+0
| |
| * tests/aux/tap-functions.sh: New file from AutomakeP. J. McDermott2022-03-172-1/+233
| | | | | | | | https://git.savannah.gnu.org/cgit/automake.git/plain/t/ax/tap-functions.sh
| * build-aux/tap-driver.sh: New file from AutomakeP. J. McDermott2022-03-174-1/+662
| | | | | | | | https://git.savannah.gnu.org/cgit/automake.git/plain/lib/tap-driver.sh
| * main: Add undocumented debugging optionP. J. McDermott2022-03-172-4/+29
| | | | | | | | | | Prints the number of seconds between the UNIX epoch and the specified time.
* | README: Fix number of formatsP. J. McDermott2022-03-181-1/+1
| |
* | datetime: Try time-only formats only onceP. J. McDermott2022-03-181-1/+10
|/
* .gitignore: Exclude *SUMSP. J. McDermott2022-03-171-0/+2
|
* TODO: Add tasksP. J. McDermott2022-03-171-0/+3
|
* main: Make (struct option) variable static constP. J. McDermott2022-03-171-1/+1
|
* main: Use difftime() instead of comparing time_tP. J. McDermott2022-03-162-6/+7
| | | | | | | | | | C99 ยง 7.23.1 defines time_t as an "arithmetic [type] capable of representing times" with "implementation-defined" "range and precision of times representable". It doesn't require that time1 > time0 for time1 later than time0. See also: http://computer-programming-forum.com/47-c-language/8d7dec65bd1ddafe.htm