This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
18c37bc
)
parts/apicheck.pl: Don't test macros with weird params
author
Karl Williamson
<khw@cpan.org>
Thu, 8 Aug 2019 19:32:44 +0000
(13:32 -0600)
committer
Nicolas R
<atoomic@cpan.org>
Fri, 27 Sep 2019 22:51:27 +0000
(16:51 -0600)
These are marked for us in the =for apidoc line.
(cherry picked from commit
beb801439ddfa3dc555a1ea0ff5a1794715b6ca4
)
Signed-off-by: Nicolas R <atoomic@cpan.org>
dist/Devel-PPPort/parts/apicheck.pl
patch
|
blob
|
blame
|
history
diff --git
a/dist/Devel-PPPort/parts/apicheck.pl
b/dist/Devel-PPPort/parts/apicheck.pl
index
9818c27
..
68b6a0a
100644
(file)
--- a/
dist/Devel-PPPort/parts/apicheck.pl
+++ b/
dist/Devel-PPPort/parts/apicheck.pl
@@
-239,6
+239,9
@@
for $f (@f) { # Loop through all the tests to add
# want them to be tested even if non-public.
$f->{'flags'}{'A'} or $f->{'ppport_fnc'} or next;
+ # Don't test unorthodox things that we aren't set up to do
+ $f->{'flags'}{'u'} and next;
+
$ignore{$unique} = 1; # ignore duplicates
my $Perl_ = $f->{'flags'}{'p'} ? 'Perl_' : '';