]> git.vpit.fr Git - perl/modules/indirect.git/blobdiff - t/50-external.t
Make sure code examples fit in a 80 columns terminal
[perl/modules/indirect.git] / t / 50-external.t
index e717bdfe6447e333eca31860d68746e6c3537dec..0d973e97a8ce2350d04bd2b40886ff655a734f9d 100644 (file)
@@ -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} }
 
@@ -12,7 +12,8 @@ sub run_perl {
 
  my $SystemRoot   = $ENV{SystemRoot};
  local %ENV;
- $ENV{SystemRoot} = $SystemRoot if $^O eq 'MSWin32' and defined $SystemRoot;
+ $ENV{SystemRoot} = $SystemRoot if  defined $SystemRoot
+                                and ($^O eq 'MSWin32' or $^O eq 'cygwin');
 
  system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code;
 }
@@ -21,3 +22,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';
+}