user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
* [PATCH] t/msgtime: skip test if timezone isn't UTC
@ 2020-03-21  6:22 Eric Wong
  0 siblings, 0 replies; only message in thread
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	[flat|nested] only message in thread

only message in thread, other threads:[~2020-03-21  6:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-21  6:22 [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).