From: Graham Knop Date: Mon, 13 Jan 2014 15:05:03 +0000 (-0500) Subject: be more strict about what shells to test X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2Flocal-lib.git;a=commitdiff_plain;h=57de29935c7c8ca21ac5443ebfc707427c807dc3 be more strict about what shells to test --- diff --git a/t/shell.t b/t/shell.t index a6b599b..4088216 100644 --- a/t/shell.t +++ b/t/shell.t @@ -8,18 +8,13 @@ use Config; use local::lib (); my @paths = File::Spec->path; -my @ext = $^O eq 'MSWin32' ? (split /\Q$Config{path_sep}/, $ENV{PATHEXT}) : (''); sub which { my $shell = shift; - for my $dir (@paths) { - my $file = File::Spec->catfile($dir||'.', $shell); - for my $ext (@ext) { - my $full = $file . $ext; - return $full - if -x $full; - } - } - return; + my ($full) = + grep { -x } + map { File::Spec->catfile( $_, $shell) } + File::Spec->path; + return $full; } my $extra_lib = '-I"' . dirname(dirname($INC{'local/lib.pm'})) . '"'; @@ -34,14 +29,14 @@ for my $shell ( opt => '-f', }, { - name => 'cmd', + name => 'cmd.exe', opt => '/Q /D /C', ext => 'bat', perl => qq{@"$^X"}, skip => $^O eq 'cygwin', }, { - name => 'powershell', + name => 'powershell.exe', opt => '-NoProfile -ExecutionPolicy Unrestricted -File', ext => 'ps1', perl => qq{& '$^X'},