In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/e5856194d9d2bb4cb4b0974bf4e89da755647185?hp=76e14ed3b2ac8d27e3f78744ebd1ee96593a8fc6>
- Log ----------------------------------------------------------------- commit e5856194d9d2bb4cb4b0974bf4e89da755647185 Author: Steffen Mueller <smuel...@cpan.org> Date: Mon Feb 24 18:00:08 2014 +0100 Test fix: Update list of B::Concise functions Imagine there was a test that actually broken open a core module's package and looked at all of its subs and compared it to a hardcoded list of "constant" and "xs" functions. That would be madness, wouldn't it? Breaking encapsulation, no less? Require tedious synchronization? m( ----------------------------------------------------------------------- Summary of changes: ext/B/t/concise-xs.t | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/B/t/concise-xs.t b/ext/B/t/concise-xs.t index 4ababde..ca82cbd 100644 --- a/ext/B/t/concise-xs.t +++ b/ext/B/t/concise-xs.t @@ -175,6 +175,7 @@ my $testpkgs = { $] >= 5.015 ? qw( OP_GLOB PMf_SKIPWHITE RXf_PMf_CHARSET RXf_PMf_KEEPCOPY OPpEVAL_BYTES OPpSUBSTR_REPL_FIRST) : (), + $] >= 5.019 ? qw(OP_PUSHMARK OP_NULL) : (), 'CVf_LOCKED', # This ends up as a constant, pre or post 5.10 ], }, -- Perl5 Master Repository