From c29b2b7ded47def906cf00e3baad65c102304120 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 21 Mar 2020 01:18:27 -0500 Subject: t/msgtime: skip test if timezone isn't UTC 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(+) (limited to 't/msgtime.t') 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']); } -- cgit v1.2.3-24-ge0c7