diff options
author | Michael G. Schwern <schwern@pobox.com> | 2008-10-03 16:04:53 -0400 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-01-03 18:39:05 +0100 |
commit | 0fb7f756cb6b1af5b0111c6cebcd5337b7ebd402 (patch) | |
tree | 5450f8c9c160d076fb7ce3718d8929a663c76082 /t | |
parent | 7315c673ba1f7464d13b316726d987b19ed41a4a (diff) | |
download | perl-0fb7f756cb6b1af5b0111c6cebcd5337b7ebd402.tar.gz |
We are no longer bound by the limits of the tm struct.
Diffstat (limited to 't')
-rwxr-xr-x | t/op/time.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/time.t b/t/op/time.t index 2b9be51fd0..2e61eea77f 100755 --- a/t/op/time.t +++ b/t/op/time.t @@ -81,7 +81,7 @@ ok(gmtime() =~ /^(Sun|Mon|Tue|Wed|Thu|Fri|Sat)[ ] # Test gmtime over a range of times. { - # gm/localtime is limited by the size of tm_year which might be as small as 16 bits + # gm/localtime should go all the way from -2**63 to 2**63-1 my %tests = ( # time_t gmtime list scalar -2**35 => [52, 13, 20, 7, 2, -1019, 5, 65, 0, "Fri Mar 7 20:13:52 881"], |