about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-03-21 01:18:27 -0500
committerEric Wong <e@yhbt.net>2020-03-21 01:18:27 -0500
commitc29b2b7ded47def906cf00e3baad65c102304120 (patch)
tree11a5e9e75eaf2b429429ee0c1a080785af145037 /t
parent97a5c2d18eb597b09c98c9ac3d0b91ef9f79294b (diff)
downloadpublic-inbox-c29b2b7ded47def906cf00e3baad65c102304120.tar.gz
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.
Diffstat (limited to 't')
-rw-r--r--t/msgtime.t4
1 files changed, 4 insertions, 0 deletions
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']);
 }