diff options
author | Steffen Mueller <smueller@cpan.org> | 2014-02-24 18:00:08 +0100 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2014-02-24 18:00:08 +0100 |
commit | e5856194d9d2bb4cb4b0974bf4e89da755647185 (patch) | |
tree | 1dbb6c82cab9374042929fba809a7fa9112a0eed /ext | |
parent | 76e14ed3b2ac8d27e3f78744ebd1ee96593a8fc6 (diff) | |
download | perl-e5856194d9d2bb4cb4b0974bf4e89da755647185.tar.gz |
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(
Diffstat (limited to 'ext')
-rw-r--r-- | ext/B/t/concise-xs.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/B/t/concise-xs.t b/ext/B/t/concise-xs.t index 4ababdebc0..ca82cbd877 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 ], }, |