Skip Menu |

This queue is for tickets about the Calendar-Simple CPAN distribution.

Report information
The Basics
Id: 55723
Status: resolved
Priority: 0/
Queue: Calendar-Simple

People
Owner: DAVECROSS [...] cpan.org
Requestors: RUZ [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.20
Fixed in: (no value)



Subject: y2038 test fails on 5.12
Hi, Dates beyond y2038 is not a problem anymore for perl 5.11.0+ Patch attached. -- Best regards, Ruslan.
Subject: Calendar-Simple-1.20-y2038_problem_test_fix.patch
diff -ur Calendar-Simple-1.20-hc0Qjl/t/no_dt.t Calendar-Simple-1.20-pouS46/t/no_dt.t --- Calendar-Simple-1.20-hc0Qjl/t/no_dt.t 2008-04-19 13:20:03.000000000 +0400 +++ Calendar-Simple-1.20-pouS46/t/no_dt.t 2010-03-20 00:27:48.000000000 +0300 @@ -53,6 +53,8 @@ ok(@month); SKIP: { + skip 'Not a problem since perl 5.11.0', 1 + if $] >= 5.011; skip 'Not a problem on 64-bit systems', 1 if defined $Config{use64bitint};
Thanks. Patch applied an version 1.21 is en route to CPAN.