]> git.vpit.fr Git - perl/modules/indirect.git/blobdiff - t/50-external.t
Make indirect play nice with Devel::CallParser
[perl/modules/indirect.git] / t / 50-external.t
index e717bdfe6447e333eca31860d68746e6c3537dec..52ff1b84ffafde55001dfdbda4a25950300e59a7 100644 (file)
@@ -3,16 +3,20 @@
 use strict;
 use warnings;
 
-use Test::More tests => 1;
+use Test::More tests => 3;
+
+use lib 't/lib';
+use VPIT::TestHelpers;
 
 BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} }
 
 sub run_perl {
  my $code = shift;
 
- my $SystemRoot   = $ENV{SystemRoot};
+ my ($SystemRoot, $PATH) = @ENV{qw<SystemRoot PATH>};
  local %ENV;
  $ENV{SystemRoot} = $SystemRoot if $^O eq 'MSWin32' and defined $SystemRoot;
+ $ENV{PATH}       = $PATH       if $^O eq 'cygwin'  and defined $PATH;
 
  system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code;
 }
@@ -21,3 +25,17 @@ 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';
+}
+
+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';
+}