# New Ticket Created by "Paul Cochrane"
# Please include the string: [perl #40519]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=40519 >
Hi,
This patch removes t/tools from the list of directories searched for
by Parrot::Distribution in order to find .pmc files. The reason for
removing this directory from the search is because the pmc files in
this directory are automatically generated and tested by the
t/tools/pmc2c.t test, and so aren't *really* pmc source files. As a
side-effect of this patch, the number of failing files for the C-coda
test is reduced :-)
HTH
Paul
files affected:
lib/Parrot/Distribution.pm
Index: lib/Parrot/Distribution.pm
===================================================================
--- lib/Parrot/Distribution.pm (revision 14904)
+++ lib/Parrot/Distribution.pm (working copy)
@@ -210,7 +210,6 @@
'languages/python/pmc',
'languages/tcl/src/pmc',
map("src/$_" => qw<dynpmc pmc>),
- 't/tools',
;
}