]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
Make indirect play nice with Devel::CallParser rt82562
authorAndrew Main <zefram@fysh.org>
Wed, 30 Jan 2013 17:52:09 +0000 (15:52 -0200)
committerVincent Pit <vince@profvince.com>
Wed, 30 Jan 2013 17:52:09 +0000 (15:52 -0200)
indirect.xs
t/50-external.t

index 4091cf31b0729b4ffc58457d6e4d8d01ded5b8f7..4f7ac3a9721c19e5abd772d107920c3eb52fa419 100644 (file)
@@ -394,6 +394,11 @@ STATIC SV *indirect_hint(pTHX) {
  if (IN_PERL_RUNTIME)
   return NULL;
 
+#if I_HAS_PERL(5, 10, 0) || defined(PL_parser)
+ if (!PL_parser)
+  return NULL;
+#endif
+
 #ifdef cop_hints_fetch_pvn
  hint = cop_hints_fetch_pvn(PL_curcop, __PACKAGE__, __PACKAGE_LEN__,
                                                               indirect_hash, 0);
index 5d3d37564b0e20987e51a429e9ab1d985c495c68..52ff1b84ffafde55001dfdbda4a25950300e59a7 100644 (file)
@@ -3,7 +3,10 @@
 use strict;
 use warnings;
 
-use Test::More tests => 2;
+use Test::More tests => 3;
+
+use lib 't/lib';
+use VPIT::TestHelpers;
 
 BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} }
 
@@ -29,3 +32,10 @@ SKIP:
  my $status = run_perl 'no indirect hook => sub { exit 2 }; new X';
  is $status, 2 << 8, 'no semicolon at the end of -e';
 }
+
+SKIP:
+{
+ load_or_skip('Devel::CallParser', undef, undef, 1);
+ my $status = run_perl "use Devel::CallParser (); no indirect; sub ok { } ok 1";
+ is $status, 0, 'indirect is not getting upset by Devel::CallParser';
+}