user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [PATCH] t/msgtime: skip test if timezone isn't UTC
@ 2020-03-21  6:22  7% Eric Wong
  0 siblings, 0 replies; 1+ results
From: Eric Wong @ 2020-03-21  6:22 UTC (permalink / raw)
  To: meta

Date::Parse falls back to using the local timezone when
it's missing from an email, so only test in a reasonable
TZ (UTC) for server software.
---
 t/msgtime.t | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/t/msgtime.t b/t/msgtime.t
index 7c95e547..3f09fb4e 100644
--- a/t/msgtime.t
+++ b/t/msgtime.t
@@ -106,6 +106,10 @@ is_datestamp('Mon, 14 Apr 2014 07:59:01 -0007', [1397462761, '-0007']);
 
 SKIP: {
 	require_mods('Date::Parse', 1);
+	my $now = time;
+	if (join("\0", gmtime($now)) ne join("\0", localtime($now))) {
+		skip('needs TZ=UTC to test zone-less parsing', 1);
+	}
 	is_datestamp('Sat, 27 Sep 1997 10:02:32', [875354552, '+0000']);
 }
 

^ permalink raw reply related	[relevance 7%]

Results 1-1 of 1 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2020-03-21  6:22  7% [PATCH] t/msgtime: skip test if timezone isn't UTC Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).