Skip Menu |

This queue is for tickets about the Digest-MD5 CPAN distribution.

Report information
The Basics
Id: 89612
Status: resolved
Priority: 0/
Queue: Digest-MD5

People
Owner: Nobody in particular
Requestors: shay [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 2.53
Fixed in: (no value)



Subject: [PATCH] Sync with blead
The attached patch makes a small change to t/files.t to skip testing README, which is no longer included in core perl as of commit 8db6555210. Please could you roll a new CPAN release sometime to get this back in sync with core?
Subject: files.patch
diff -ruN Digest-MD5-2.53.orig/t/files.t Digest-MD5-2.53/t/files.t --- Digest-MD5-2.53.orig/t/files.t 2013-07-02 06:38:31.000000000 +0100 +++ Digest-MD5-2.53/t/files.t 2013-10-18 18:21:24.974785200 +0100 @@ -44,7 +44,8 @@ my $base = $file; # print "# $base\n"; if ($ENV{PERL_CORE}) { - if ($file eq 'rfc1321.txt') { # Don't have it in core. + # Don't have these in core. + if ($file eq 'rfc1321.txt' or $file eq 'README') { print "ok ", ++$testno, " # Skip: PERL_CORE\n"; next; }