Subject: | t/option_l.t fails |
t/option_l.t fails because it needs to load Carp before redefining
Carp::carp.
The attached patch fixes this. This patch is the equivalent of the
changes made recently in blead.
Subject: | bignum.patch |
--- perl-current/lib/bignum/t/option_l.t.orig 2007-05-09 08:44:08.382171900 -0400
+++ perl-current/lib/bignum/t/option_l.t 2007-05-09 08:44:14.631344700 -0400
@@ -18,6 +18,7 @@
my @W;
{
# catch warnings:
+require Carp;
no warnings 'redefine';
*Carp::carp = sub { push @W, $_[0]; };
}