From: Dave Rolsky Date: Tue, 16 Aug 2005 11:22:20 +0000 (-0500) Subject: Your bug reports for Time::Local X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=93a047328e714ace2986c9ffb3515b4bf0939bfd;p=p5sagit%2Fp5-mst-13.2.git Your bug reports for Time::Local Message-ID: An improvement on change 25287 from Dave Rolsky p4raw-id: //depot/perl@25300 --- diff --git a/lib/Time/Local.t b/lib/Time/Local.t index ed23fca..288dcb6 100755 --- a/lib/Time/Local.t +++ b/lib/Time/Local.t @@ -53,7 +53,10 @@ my @neg_time = [ 1950, 04, 12, 9, 30, 31 ], ); -my $neg_epoch_ok = defined ((localtime(-3600))[0]) ? 1 : 0; +# Use 3 days before the start of the epoch because with Borland on +# Win32 it will work for -3600 _if_ your time zone is +01:00 (or +# greater). +my $neg_epoch_ok = defined ((localtime(-259200))[0]) ? 1 : 0; # use vmsish 'time' makes for oddness around the Unix epoch if ($^O eq 'VMS') { @@ -61,13 +64,6 @@ if ($^O eq 'VMS') { $neg_epoch_ok = 0; # time_t is unsigned } -# Borland compiler sets $neg_epoch_ok differently depending on the -# current Time Zone in use on the machine, but it should always be -# set to 0. -if ($^O eq 'MSWin32' and $Config{ccname} eq 'bcc32') { - $neg_epoch_ok = 0; -} - my $tests = (@time * 12); $tests += @neg_time * 12; $tests += @bad_time;