]> 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 f8dca42522242f0c164f86e85393b1b04915cfd9..0d973e97a8ce2350d04bd2b40886ff655a734f9d 100644 (file)
@@ -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;
 }
@@ -24,7 +25,7 @@ sub run_perl {
 
 SKIP:
 {
- skip 'Fixed in core only since 5.12' => 1 unless $] >= 5.012;
+ 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';
 }