summaryrefslogtreecommitdiff
path: root/cpan
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2015-12-17 08:35:26 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2015-12-17 08:35:26 +0000
commit054d0c998953375b745a9b7c25537c0a01d951b3 (patch)
treeb4770f9f7ba3ba6dc7ab632b9fc9af5e555d9d39 /cpan
parentb3d7d86513d56fd205d6766e579023fe4c12eeea (diff)
downloadperl-054d0c998953375b745a9b7c25537c0a01d951b3.tar.gz
Upgrade CPAN-Meta-Requirements from 2.133 to 2.140
Diffstat (limited to 'cpan')
-rw-r--r--cpan/CPAN-Meta-Requirements/lib/CPAN/Meta/Requirements.pm187
-rw-r--r--cpan/CPAN-Meta-Requirements/t/accepts.t22
-rw-r--r--cpan/CPAN-Meta-Requirements/t/bad_version_hook.t13
-rw-r--r--cpan/CPAN-Meta-Requirements/t/basic.t34
-rw-r--r--cpan/CPAN-Meta-Requirements/t/finalize.t2
-rw-r--r--cpan/CPAN-Meta-Requirements/t/from-hash.t13
-rw-r--r--cpan/CPAN-Meta-Requirements/t/merge.t2
-rw-r--r--cpan/CPAN-Meta-Requirements/t/strings.t2
8 files changed, 203 insertions, 72 deletions
diff --git a/cpan/CPAN-Meta-Requirements/lib/CPAN/Meta/Requirements.pm b/cpan/CPAN-Meta-Requirements/lib/CPAN/Meta/Requirements.pm
index 037ea505b3..b0e83b0d2d 100644
--- a/cpan/CPAN-Meta-Requirements/lib/CPAN/Meta/Requirements.pm
+++ b/cpan/CPAN-Meta-Requirements/lib/CPAN/Meta/Requirements.pm
@@ -1,9 +1,10 @@
+use 5.006; # keep at v5.6 for CPAN.pm
use strict;
use warnings;
package CPAN::Meta::Requirements;
# ABSTRACT: a set of version requirements for a CPAN dist
-our $VERSION = '2.133';
+our $VERSION = '2.140';
#pod =head1 SYNOPSIS
#pod
@@ -115,7 +116,7 @@ sub _version_object {
if (not defined $version or (!ref($version) && $version eq '0')) {
return $V0;
}
- elsif ( ref($version) eq 'version' || _isa_version($version) ) {
+ elsif ( ref($version) eq 'version' || ( ref($version) && _isa_version($version) ) ) {
$vobj = $version;
}
else {
@@ -124,8 +125,14 @@ sub _version_object {
my $magic = _find_magic_vstring( $version );
$version = $magic if length $magic;
}
+ # pad to 3 characters if before 5.8.1 and appears to be a v-string
+ if ( $] < 5.008001 && $version !~ /\A[0-9]/ && substr($version,0,1) ne 'v' && length($version) < 3 ) {
+ $version .= "\0" x (3 - length($version));
+ }
eval {
local $SIG{__WARN__} = sub { die "Invalid version: $_[0]" };
+ # avoid specific segfault on some older version.pm versions
+ die "Invalid version: $version" if $version eq 'version';
$vobj = version->new($version);
};
if ( my $err = $@ ) {
@@ -218,7 +225,7 @@ BEGIN {
return $self;
};
-
+
no strict 'refs';
*$to_add = $code;
}
@@ -237,7 +244,7 @@ sub add_minimum {
if $self->is_finalized;
$self->{requirements}{ $name } =
- CPAN::Meta::Requirements::_Range::Range->with_minimum($V0);
+ CPAN::Meta::Requirements::_Range::Range->with_minimum($V0, $name);
}
else {
$version = $self->_version_object( $name, $version );
@@ -251,9 +258,9 @@ sub add_minimum {
#pod
#pod $req->add_requirements( $another_req_object );
#pod
-#pod This method adds all the requirements in the given CPAN::Meta::Requirements object
-#pod to the requirements object on which it was called. If there are any conflicts,
-#pod an exception is thrown.
+#pod This method adds all the requirements in the given CPAN::Meta::Requirements
+#pod object to the requirements object on which it was called. If there are any
+#pod conflicts, an exception is thrown.
#pod
#pod This method returns the requirements object.
#pod
@@ -330,7 +337,7 @@ sub clear_requirement {
#pod the format described in L<CPAN::Meta::Spec> or undef if the given module has no
#pod requirements. This should only be used for informational purposes such as error
#pod messages and should not be interpreted or used for comparison (see
-#pod L</accepts_module> instead.)
+#pod L</accepts_module> instead).
#pod
#pod =cut
@@ -341,6 +348,25 @@ sub requirements_for_module {
return $entry->as_string;
}
+#pod =method structured_requirements_for_module
+#pod
+#pod $req->structured_requirements_for_module( $module );
+#pod
+#pod This returns a data structure containing the version requirements for a given
+#pod module or undef if the given module has no requirements. This should
+#pod not be used for version checks (see L</accepts_module> instead).
+#pod
+#pod Added in version 2.134.
+#pod
+#pod =cut
+
+sub structured_requirements_for_module {
+ my ($self, $module) = @_;
+ my $entry = $self->__entry_for($module);
+ return unless $entry;
+ return $entry->as_struct;
+}
+
#pod =method required_modules
#pod
#pod This method returns a list of all the modules for which requirements have been
@@ -378,7 +404,7 @@ sub __modify_entry_for {
if $fin and not $old;
my $new = ($old || 'CPAN::Meta::Requirements::_Range::Range')
- ->$method($version);
+ ->$method($version, $name);
Carp::confess("can't modify finalized requirements")
if $fin and $old->as_string ne $new->as_string;
@@ -589,36 +615,62 @@ sub from_string_hash {
sub as_string { return "== $_[0]{version}" }
+ sub as_struct { return [ [ '==', "$_[0]{version}" ] ] }
+
sub as_modifiers { return [ [ exact_version => $_[0]{version} ] ] }
+ sub _reject_requirements {
+ my ($self, $module, $error) = @_;
+ Carp::confess("illegal requirements for $module: $error")
+ }
+
sub _clone {
(ref $_[0])->_new( version->new( $_[0]{version} ) )
}
sub with_exact_version {
- my ($self, $version) = @_;
+ my ($self, $version, $module) = @_;
+ $module = 'module' unless defined $module;
return $self->_clone if $self->_accepts($version);
- Carp::confess("illegal requirements: unequal exact version specified");
+ $self->_reject_requirements(
+ $module,
+ "can't be exactly $version when exact requirement is already $self->{version}",
+ );
}
sub with_minimum {
- my ($self, $minimum) = @_;
+ my ($self, $minimum, $module) = @_;
+ $module = 'module' unless defined $module;
+
return $self->_clone if $self->{version} >= $minimum;
- Carp::confess("illegal requirements: minimum above exact specification");
+ $self->_reject_requirements(
+ $module,
+ "minimum $minimum exceeds exact specification $self->{version}",
+ );
}
sub with_maximum {
- my ($self, $maximum) = @_;
+ my ($self, $maximum, $module) = @_;
+ $module = 'module' unless defined $module;
+
return $self->_clone if $self->{version} <= $maximum;
- Carp::confess("illegal requirements: maximum below exact specification");
+ $self->_reject_requirements(
+ $module,
+ "maximum $maximum below exact specification $self->{version}",
+ );
}
sub with_exclusion {
- my ($self, $exclusion) = @_;
+ my ($self, $exclusion, $module) = @_;
+ $module = 'module' unless defined $module;
+
return $self->_clone unless $exclusion == $self->{version};
- Carp::confess("illegal requirements: excluded exact specification");
+ $self->_reject_requirements(
+ $module,
+ "tried to exclude $exclusion, which is already exactly specified",
+ );
}
}
@@ -655,61 +707,87 @@ sub from_string_hash {
return \@mods;
}
- sub as_string {
+ sub as_struct {
my ($self) = @_;
return 0 if ! keys %$self;
- return "$self->{minimum}" if (keys %$self) == 1 and exists $self->{minimum};
-
my @exclusions = @{ $self->{exclusions} || [] };
my @parts;
- for my $pair (
+ for my $tuple (
[ qw( >= > minimum ) ],
[ qw( <= < maximum ) ],
) {
- my ($op, $e_op, $k) = @$pair;
+ my ($op, $e_op, $k) = @$tuple;
if (exists $self->{$k}) {
my @new_exclusions = grep { $_ != $self->{ $k } } @exclusions;
if (@new_exclusions == @exclusions) {
- push @parts, "$op $self->{ $k }";
+ push @parts, [ $op, "$self->{ $k }" ];
} else {
- push @parts, "$e_op $self->{ $k }";
+ push @parts, [ $e_op, "$self->{ $k }" ];
@exclusions = @new_exclusions;
}
}
}
- push @parts, map {; "!= $_" } @exclusions;
+ push @parts, map {; [ "!=", "$_" ] } @exclusions;
+
+ return \@parts;
+ }
+
+ sub as_string {
+ my ($self) = @_;
+
+ my @parts = @{ $self->as_struct };
+
+ return $parts[0][1] if @parts == 1 and $parts[0][0] eq '>=';
- return join q{, }, @parts;
+ return join q{, }, map {; join q{ }, @$_ } @parts;
+ }
+
+ sub _reject_requirements {
+ my ($self, $module, $error) = @_;
+ Carp::confess("illegal requirements for $module: $error")
}
sub with_exact_version {
- my ($self, $version) = @_;
+ my ($self, $version, $module) = @_;
+ $module = 'module' unless defined $module;
$self = $self->_clone;
- Carp::confess("illegal requirements: exact specification outside of range")
- unless $self->_accepts($version);
+ unless ($self->_accepts($version)) {
+ $self->_reject_requirements(
+ $module,
+ "exact specification $version outside of range " . $self->as_string
+ );
+ }
return CPAN::Meta::Requirements::_Range::Exact->_new($version);
}
sub _simplify {
- my ($self) = @_;
+ my ($self, $module) = @_;
if (defined $self->{minimum} and defined $self->{maximum}) {
if ($self->{minimum} == $self->{maximum}) {
- Carp::confess("illegal requirements: excluded all values")
- if grep { $_ == $self->{minimum} } @{ $self->{exclusions} || [] };
+ if (grep { $_ == $self->{minimum} } @{ $self->{exclusions} || [] }) {
+ $self->_reject_requirements(
+ $module,
+ "minimum and maximum are both $self->{minimum}, which is excluded",
+ );
+ }
return CPAN::Meta::Requirements::_Range::Exact->_new($self->{minimum})
}
- Carp::confess("illegal requirements: minimum exceeds maximum")
- if $self->{minimum} > $self->{maximum};
+ if ($self->{minimum} > $self->{maximum}) {
+ $self->_reject_requirements(
+ $module,
+ "minimum $self->{minimum} exceeds maximum $self->{maximum}",
+ );
+ }
}
# eliminate irrelevant exclusions
@@ -728,7 +806,8 @@ sub from_string_hash {
}
sub with_minimum {
- my ($self, $minimum) = @_;
+ my ($self, $minimum, $module) = @_;
+ $module = 'module' unless defined $module;
$self = $self->_clone;
if (defined (my $old_min = $self->{minimum})) {
@@ -737,11 +816,12 @@ sub from_string_hash {
$self->{minimum} = $minimum;
}
- return $self->_simplify;
+ return $self->_simplify($module);
}
sub with_maximum {
- my ($self, $maximum) = @_;
+ my ($self, $maximum, $module) = @_;
+ $module = 'module' unless defined $module;
$self = $self->_clone;
if (defined (my $old_max = $self->{maximum})) {
@@ -750,16 +830,17 @@ sub from_string_hash {
$self->{maximum} = $maximum;
}
- return $self->_simplify;
+ return $self->_simplify($module);
}
sub with_exclusion {
- my ($self, $exclusion) = @_;
+ my ($self, $exclusion, $module) = @_;
+ $module = 'module' unless defined $module;
$self = $self->_clone;
push @{ $self->{exclusions} ||= [] }, $exclusion;
- return $self->_simplify;
+ return $self->_simplify($module);
}
sub _accepts {
@@ -789,7 +870,7 @@ CPAN::Meta::Requirements - a set of version requirements for a CPAN dist
=head1 VERSION
-version 2.133
+version 2.140
=head1 SYNOPSIS
@@ -889,9 +970,9 @@ This method returns the requirements object.
$req->add_requirements( $another_req_object );
-This method adds all the requirements in the given CPAN::Meta::Requirements object
-to the requirements object on which it was called. If there are any conflicts,
-an exception is thrown.
+This method adds all the requirements in the given CPAN::Meta::Requirements
+object to the requirements object on which it was called. If there are any
+conflicts, an exception is thrown.
This method returns the requirements object.
@@ -926,7 +1007,17 @@ This returns a string containing the version requirements for a given module in
the format described in L<CPAN::Meta::Spec> or undef if the given module has no
requirements. This should only be used for informational purposes such as error
messages and should not be interpreted or used for comparison (see
-L</accepts_module> instead.)
+L</accepts_module> instead).
+
+=head2 structured_requirements_for_module
+
+ $req->structured_requirements_for_module( $module );
+
+This returns a data structure containing the version requirements for a given
+module or undef if the given module has no requirements. This should
+not be used for version checks (see L</accepts_module> instead).
+
+Added in version 2.134.
=head2 required_modules
@@ -1043,7 +1134,7 @@ method.
=head2 Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker
-at L<https://github.com/dagolden/CPAN-Meta-Requirements/issues>.
+at L<https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues>.
You will be notified automatically of any progress on your issue.
=head2 Source Code
@@ -1051,9 +1142,9 @@ You will be notified automatically of any progress on your issue.
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
-L<https://github.com/dagolden/CPAN-Meta-Requirements>
+L<https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements>
- git clone https://github.com/dagolden/CPAN-Meta-Requirements.git
+ git clone https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements.git
=head1 AUTHORS
diff --git a/cpan/CPAN-Meta-Requirements/t/accepts.t b/cpan/CPAN-Meta-Requirements/t/accepts.t
index 75bc22f7ad..8a694eaac0 100644
--- a/cpan/CPAN-Meta-Requirements/t/accepts.t
+++ b/cpan/CPAN-Meta-Requirements/t/accepts.t
@@ -8,32 +8,32 @@ use Test::More 0.88;
{
my $req = CPAN::Meta::Requirements->new->add_minimum(Foo => 1);
- ok( $req->accepts_module(Foo => 1));
- ok(! $req->accepts_module(Foo => 0));
+ ok( $req->accepts_module(Foo => 1), "need 1, got 1");
+ ok(! $req->accepts_module(Foo => 0), "need 0, got 1");
}
{
my $req = CPAN::Meta::Requirements->new->add_minimum(Foo => 0);
- ok( $req->accepts_module(Foo => 1));
- ok( $req->accepts_module(Foo => undef));
- ok( $req->accepts_module(Foo => "v0"));
- ok( $req->accepts_module(Foo => v1.2.3));
- ok( $req->accepts_module(Foo => "v1.2.3"));
+ ok( $req->accepts_module(Foo => 1), "need 0, got 1");
+ ok( $req->accepts_module(Foo => undef), "need 0, got undef");
+ ok( $req->accepts_module(Foo => "v0"), "need 0, got 'v0'");
+ ok( $req->accepts_module(Foo => v1.2.3), "need 0, got v1.2.3");
+ ok( $req->accepts_module(Foo => "v1.2.3"), "need 0, got 'v1.2.3'");
}
{
my $req = CPAN::Meta::Requirements->new->add_maximum(Foo => 1);
- ok( $req->accepts_module(Foo => 1));
- ok(! $req->accepts_module(Foo => 2));
+ ok( $req->accepts_module(Foo => 1), "need <=1, got 1");
+ ok(! $req->accepts_module(Foo => 2), "need <=1, got 2");
}
{
my $req = CPAN::Meta::Requirements->new->add_exclusion(Foo => 1);
- ok( $req->accepts_module(Foo => 0));
- ok(! $req->accepts_module(Foo => 1));
+ ok( $req->accepts_module(Foo => 0), "need !1, got 0");
+ ok(! $req->accepts_module(Foo => 1), "need !1, got 1");
}
done_testing;
diff --git a/cpan/CPAN-Meta-Requirements/t/bad_version_hook.t b/cpan/CPAN-Meta-Requirements/t/bad_version_hook.t
index 5eef7fbb68..d0214662e3 100644
--- a/cpan/CPAN-Meta-Requirements/t/bad_version_hook.t
+++ b/cpan/CPAN-Meta-Requirements/t/bad_version_hook.t
@@ -9,6 +9,7 @@ use Test::More 0.88;
my %DATA = (
'Foo::Bar' => [ 10, 10 ],
'Foo::Baz' => [ 'invalid_version', 42 ],
+ 'Foo::Qux' => [ 'version', 42 ],
);
my %input = map { ($_ => $DATA{$_}->[0]) } keys %DATA;
my %expected = map { ($_ => $DATA{$_}->[1]) } keys %DATA;
@@ -16,6 +17,8 @@ my %expected = map { ($_ => $DATA{$_}->[1]) } keys %DATA;
sub dies_ok (&@) {
my ($code, $qr, $comment) = @_;
+ no warnings 'redefine';
+ local *Regexp::CARP_TRACE = sub { "<regexp>" };
my $lived = eval { $code->(); 1 };
if ($lived) {
@@ -26,14 +29,18 @@ sub dies_ok (&@) {
}
my $hook_text;
-sub _fixit { my ($v, $m) = @_; $hook_text = $m; return version->new(42) }
+sub _fixit { my ($v, $m) = @_; $hook_text .= $m; return version->new(42) }
{
my $req = CPAN::Meta::Requirements->new( {bad_version_hook => \&_fixit} );
my ($k, $v);
- $req->add_minimum($k => $v) while ($k, $v) = each %input;
- is $hook_text, 'Foo::Baz', 'hook stored module name';
+ while (($k, $v) = each %input) {
+ note "adding minimum requirement: $k => $v";
+ eval { $req->add_minimum($k => $v) };
+ is( $@, '', "adding minimum '$k' for $v" );
+ }
+ like( $hook_text, qr/Foo::Baz/, 'hook stored module name' );
is_deeply(
$req->as_string_hash,
diff --git a/cpan/CPAN-Meta-Requirements/t/basic.t b/cpan/CPAN-Meta-Requirements/t/basic.t
index ba029f427b..26b252c13c 100644
--- a/cpan/CPAN-Meta-Requirements/t/basic.t
+++ b/cpan/CPAN-Meta-Requirements/t/basic.t
@@ -8,6 +8,8 @@ use Test::More 0.88;
sub dies_ok (&@) {
my ($code, $qr, $comment) = @_;
+ no warnings 'redefine';
+ local *Regexp::CARP_TRACE = sub { "<regexp>" };
my $lived = eval { $code->(); 1 };
if ($lived) {
@@ -126,7 +128,7 @@ sub dies_ok (&@) {
$req->add_exclusion(Foo => 1);
dies_ok { $req->add_maximum(Foo => 1); }
- qr/excluded all/,
+ qr/both 1, which is excluded/,
"can't exclude all values" ;
}
@@ -142,13 +144,13 @@ sub dies_ok (&@) {
my $req = CPAN::Meta::Requirements->new;
$req->add_minimum(Foo => 1);
dies_ok { $req->add_maximum(Foo => 0.5); }
- qr/minimum exceeds maximum/,
+ qr/minimum 1 exceeds maximum/,
"maximum must exceed (or equal) minimum";
$req = CPAN::Meta::Requirements->new;
$req->add_maximum(Foo => 0.5);
dies_ok { $req->add_minimum(Foo => 1); }
- qr/minimum exceeds maximum/,
+ qr/minimum 1 exceeds maximum/,
"maximum must exceed (or equal) minimum";
}
@@ -188,6 +190,18 @@ sub dies_ok (&@) {
},
'test exclusion-skipping',
);
+
+ is_deeply(
+ $req->structured_requirements_for_module('Foo'),
+ # remember, it's okay to change the exact results, as long as the meaning
+ # is unchanged -- rjbs, 2012-07-11
+ [
+ [ '>=', '1' ],
+ [ '<=', '3' ],
+ [ '!=', '2' ],
+ ],
+ "structured requirements for Foo",
+ );
}
sub foo_1 {
@@ -204,21 +218,21 @@ sub foo_1 {
is_deeply($req->as_string_hash, { Foo => '== 1' }, "exact requirement");
dies_ok { $req->exact_version(Foo => 2); }
- qr/unequal/,
+ qr/can't be exactly 2.+already/,
"can't exactly specify differing versions" ;
$req = foo_1;
$req->add_minimum(Foo => 0); # ignored
$req->add_maximum(Foo => 2); # ignored
- dies_ok { $req->add_maximum(Foo => 0); } qr/maximum below/, "max < fixed";
+ dies_ok { $req->add_maximum(Foo => 0); } qr/maximum 0 below exact/, "max < fixed";
$req = foo_1;
- dies_ok { $req->add_minimum(Foo => 2); } qr/minimum above/, "min > fixed";
+ dies_ok { $req->add_minimum(Foo => 2); } qr/minimum 2 exceeds exact/, "min > fixed";
$req = foo_1;
$req->add_exclusion(Foo => 8); # ignored
- dies_ok { $req->add_exclusion(Foo => 1); } qr/excluded exact/, "!= && ==";
+ dies_ok { $req->add_exclusion(Foo => 1); } qr/tried to exclude/, "!= && ==";
}
{
@@ -226,6 +240,12 @@ sub foo_1 {
is($req->requirements_for_module('Foo'), '== 1', 'requirements_for_module');
+ is_deeply(
+ $req->structured_requirements_for_module('Foo'),
+ [ [ '==', '1' ] ],
+ 'structured_requirements_for_module'
+ );
+
# test empty/undef returns
my @list = $req->requirements_for_module('FooBarBamBaz');
my $scalar = $req->requirements_for_module('FooBarBamBaz');
diff --git a/cpan/CPAN-Meta-Requirements/t/finalize.t b/cpan/CPAN-Meta-Requirements/t/finalize.t
index 58048b51d5..aa139d3a6e 100644
--- a/cpan/CPAN-Meta-Requirements/t/finalize.t
+++ b/cpan/CPAN-Meta-Requirements/t/finalize.t
@@ -8,6 +8,8 @@ use Test::More 0.88;
sub dies_ok (&@) {
my ($code, $qr, $comment) = @_;
+ no warnings 'redefine';
+ local *Regexp::CARP_TRACE = sub { "<regexp>" };
my $lived = eval { $code->(); 1 };
if ($lived) {
diff --git a/cpan/CPAN-Meta-Requirements/t/from-hash.t b/cpan/CPAN-Meta-Requirements/t/from-hash.t
index 73ec214395..fa5d39817c 100644
--- a/cpan/CPAN-Meta-Requirements/t/from-hash.t
+++ b/cpan/CPAN-Meta-Requirements/t/from-hash.t
@@ -8,6 +8,8 @@ use Test::More 0.88;
sub dies_ok (&@) {
my ($code, $qr, $comment) = @_;
+ no warnings 'redefine';
+ local *Regexp::CARP_TRACE = sub { "<regexp>" };
my $lived = eval { $code->(); 1 };
if ($lived) {
@@ -33,7 +35,9 @@ sub dies_ok (&@) {
);
}
-{
+SKIP: {
+ skip "Can't tell v-strings from strings until 5.8.1", 1
+ unless $] gt '5.008';
my $string_hash = {
Left => 10,
Shared => '= 2',
@@ -64,7 +68,9 @@ sub dies_ok (&@) {
);
}
-{
+SKIP: {
+ skip "Can't tell v-strings from strings until 5.8.1", 2
+ unless $] gt '5.008';
my $string_hash = {
Left => 10,
Shared => v50.44.60,
@@ -74,7 +80,8 @@ sub dies_ok (&@) {
my $warning;
local $SIG{__WARN__} = sub { $warning = join("\n",@_) };
- my $req = CPAN::Meta::Requirements->from_string_hash($string_hash);
+ my $req = eval { CPAN::Meta::Requirements->from_string_hash($string_hash); };
+ is( $@, '', "vstring in string hash lives" );
ok(
$req->accepts_module(Shared => 'v50.44.60'),
diff --git a/cpan/CPAN-Meta-Requirements/t/merge.t b/cpan/CPAN-Meta-Requirements/t/merge.t
index a0513560e4..6610c0532b 100644
--- a/cpan/CPAN-Meta-Requirements/t/merge.t
+++ b/cpan/CPAN-Meta-Requirements/t/merge.t
@@ -8,6 +8,8 @@ use Test::More 0.88;
sub dies_ok (&@) {
my ($code, $qr, $comment) = @_;
+ no warnings 'redefine';
+ local *Regexp::CARP_TRACE = sub { "<regexp>" };
my $lived = eval { $code->(); 1 };
if ($lived) {
diff --git a/cpan/CPAN-Meta-Requirements/t/strings.t b/cpan/CPAN-Meta-Requirements/t/strings.t
index 55a28bee6b..da4e4e1234 100644
--- a/cpan/CPAN-Meta-Requirements/t/strings.t
+++ b/cpan/CPAN-Meta-Requirements/t/strings.t
@@ -5,6 +5,8 @@ use Test::More 0.88;
sub dies_ok (&@) {
my ($code, $qr, $comment) = @_;
+ no warnings 'redefine';
+ local *Regexp::CARP_TRACE = sub { "<regexp>" };
my $lived = eval { $code->(); 1 };
if ($lived) {