From: David Mitchell Date: Wed, 5 Aug 2009 20:40:55 +0000 (+0100) Subject: fix for EU:MM 6.55_02 failing test, X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3ed7368117d18c1af3bc089adf0d9fcdf5c04cd4;p=p5sagit%2Fp5-mst-13.2.git fix for EU:MM 6.55_02 failing test, as suggested by Schwern --- diff --git a/lib/ExtUtils/t/00compile.t b/lib/ExtUtils/t/00compile.t index cadfe55..20f7ded 100644 --- a/lib/ExtUtils/t/00compile.t +++ b/lib/ExtUtils/t/00compile.t @@ -21,8 +21,8 @@ chdir ".."; my $manifest = "MANIFEST"; open(my $manifest_fh, "<", $manifest) or die "Can't open $manifest: $!"; my @modules = map { m{^lib/(\S+)}; $1 } - grep { m{^lib/\S+\.pm} } - <$manifest_fh>; + grep { m{^lib/ExtUtils/\S*\.pm} } + grep { !m{/t/} } <$manifest_fh>; chomp @modules; close $manifest_fh;