* [PATCH] t0006: add more tests with a negative TZ offset
@ 2024-03-14 8:55 Beat Bolli
0 siblings, 0 replies; only message in thread
From: Beat Bolli @ 2024-03-14 8:55 UTC (permalink / raw)
To: git; +Cc: gitster, Beat Bolli
This test doesn't systematically check a negative timezone offset. Add a
test for each format that outputs the offset to improve our test
coverage.
Signed-off-by: Beat Bolli <dev+git@drbeat.li>
---
t/t0006-date.sh | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/t/t0006-date.sh b/t/t0006-date.sh
index 1d228a981e..3031256d14 100755
--- a/t/t0006-date.sh
+++ b/t/t0006-date.sh
@@ -70,6 +70,14 @@ check_show 'format:%s' '123456789 +1234' 123456789
check_show 'format:%s' '123456789 -1234' 123456789
check_show 'format-local:%s' '123456789 -1234' 123456789
+# negative TZ offset
+TIME='1466000000 -0200'
+check_show iso8601 "$TIME" '2016-06-15 12:13:20 -0200'
+check_show iso8601-strict "$TIME" '2016-06-15T12:13:20-02:00'
+check_show rfc2822 "$TIME" 'Wed, 15 Jun 2016 12:13:20 -0200'
+check_show default "$TIME" 'Wed Jun 15 12:13:20 2016 -0200'
+check_show raw "$TIME" '1466000000 -0200'
+
# arbitrary time absurdly far in the future
FUTURE="5758122296 -0400"
check_show iso "$FUTURE" "2152-06-19 18:24:56 -0400" TIME_IS_64BIT,TIME_T_IS_64BIT
--
2.42.0.583.ga47b40fd90
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2024-03-14 8:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-14 8:55 [PATCH] t0006: add more tests with a negative TZ offset Beat Bolli
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.