From a12833ec086d5e0d35eac04f7e3c386879beccc0 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Mon, 19 Jan 2015 23:47:55 +0100 Subject: Handle dates past January 19th, 2038 Try to support dates past year 2038 on systems with 64-bit time_t. Signed-off-by: Lukas Fleischer --- test/data/apts-y2k38-001 | 4 ++++ test/y2k38-001.sh | 27 +++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 test/data/apts-y2k38-001 create mode 100755 test/y2k38-001.sh (limited to 'test') diff --git a/test/data/apts-y2k38-001 b/test/data/apts-y2k38-001 new file mode 100644 index 0000000..bf6d664 --- /dev/null +++ b/test/data/apts-y2k38-001 @@ -0,0 +1,4 @@ +01/19/2038 [1] Event 1 +01/20/2038 [1] Event 2 +01/01/2100 [1] Event 3 +01/01/9999 [1] Event 4 diff --git a/test/y2k38-001.sh b/test/y2k38-001.sh new file mode 100755 index 0000000..5243ea6 --- /dev/null +++ b/test/y2k38-001.sh @@ -0,0 +1,27 @@ +#!/bin/sh + +. "${TEST_INIT:-./test-init.sh}" + +if [ "$1" = 'actual' ]; then + "$CALCURSE" --read-only -D "$DATA_DIR"/ -c "$DATA_DIR/apts-y2k38-001" \ + -d01/19/2038 + "$CALCURSE" --read-only -D "$DATA_DIR"/ -c "$DATA_DIR/apts-y2k38-001" \ + -d01/20/2038 + "$CALCURSE" --read-only -D "$DATA_DIR"/ -c "$DATA_DIR/apts-y2k38-001" \ + -d01/01/2100 + "$CALCURSE" --read-only -D "$DATA_DIR"/ -c "$DATA_DIR/apts-y2k38-001" \ + -d01/01/9999 +elif [ "$1" = 'expected' ]; then + cat <