]> Sergey Matveev's repositories - public-inbox.git/commitdiff
t/msgtime: skip test if timezone isn't UTC
authorEric Wong <e@yhbt.net>
Sat, 21 Mar 2020 06:18:27 +0000 (01:18 -0500)
committerEric Wong <e@yhbt.net>
Sat, 21 Mar 2020 06:18:27 +0000 (01:18 -0500)
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

index 7c95e547d5bf98dcb877737d73a2c32c1339eef3..3f09fb4ef76ee0a915add8942136f0860c59ad2d 100644 (file)
@@ -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']);
 }