In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/ae28cfdabdb4b69fc46d64214c67a33c9e9b2683?hp=1afdebce433dba1c67962359f597d3ed45df2192>
- Log ----------------------------------------------------------------- commit ae28cfdabdb4b69fc46d64214c67a33c9e9b2683 Author: Nicholas Clark <[email protected]> Date: Fri Dec 10 16:30:21 2010 +0000 As of 2.25, 5.6.x is writing minor version 8, so update malice.t M dist/Storable/t/malice.t commit a03ee83dc51fd581517da9929368eaaa7a7ced39 Author: Nicholas Clark <[email protected]> Date: Fri Dec 10 16:29:31 2010 +0000 5.8.8's Test::More doesn't provide note(), so revert to a print statement. M dist/Storable/t/restrict.t ----------------------------------------------------------------------- Summary of changes: dist/Storable/t/malice.t | 2 +- dist/Storable/t/restrict.t | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/Storable/t/malice.t b/dist/Storable/t/malice.t index 95f6e26..79df2d5 100644 --- a/dist/Storable/t/malice.t +++ b/dist/Storable/t/malice.t @@ -35,7 +35,7 @@ $other_magic = 7 + length $byteorder; $network_magic = 2; $major = 2; $minor = 8; -$minor_write = $] > 5.005_50 ? $] >= 5.008 ? 8 : 7 : 4; +$minor_write = $] > 5.005_50 ? 8 : 4; use Test::More; diff --git a/dist/Storable/t/restrict.t b/dist/Storable/t/restrict.t index d2b1836..b21b37c 100644 --- a/dist/Storable/t/restrict.t +++ b/dist/Storable/t/restrict.t @@ -91,7 +91,7 @@ sub testit { for $Storable::canonical (0, 1) { for my $cloner (\&dclone, \&freeze_thaw) { - note("\$Storable::canonical = $Storable::canonical"); + print "# \$Storable::canonical = $Storable::canonical\n"; testit (\%hash, $cloner); my $object = \%hash; # bless {}, "Restrict_Test"; -- Perl5 Master Repository
