X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=t%2F50-external.t;h=2b318297eb101b66df6fe530955cd1a647801b37;hp=e717bdfe6447e333eca31860d68746e6c3537dec;hb=4b4db54a0b823391ba82d3c9f4d6809601595d94;hpb=28344f23a0e0d25ff130a5745a91e85fbadfcd6f diff --git a/t/50-external.t b/t/50-external.t index e717bdf..2b31829 100644 --- a/t/50-external.t +++ b/t/50-external.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 1; +use Test::More tests => 2; BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} } @@ -21,3 +21,10 @@ sub run_perl { my $status = run_perl 'no indirect; qq{a\x{100}b} =~ /\A[\x00-\x7f]*\z/;'; is $status, 0, 'RT #47866'; } + +SKIP: +{ + skip 'Fixed in core only since 5.12' => 1 unless "$]" >= 5.012; + my $status = run_perl 'no indirect hook => sub { exit 2 }; new X'; + is $status, 2 << 8, 'no semicolon at the end of -e'; +}