From: Gurusamy Sarathy Date: Mon, 9 Jul 2001 04:36:30 +0000 (+0000) Subject: run/exit.t busted on windows X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ee2f883e168d1bf008aa8d3180fc540f3d4f87e4;p=p5sagit%2Fp5-mst-13.2.git run/exit.t busted on windows p4raw-id: //depot/perl@11231 --- diff --git a/t/run/exit.t b/t/run/exit.t index 828b832..20c2c49 100644 --- a/t/run/exit.t +++ b/t/run/exit.t @@ -8,8 +8,8 @@ BEGIN { @INC = '../lib'; } -# VMS needs -e "...", most everything else works better with ' -my $quote = $^O eq 'VMS' ? q{"} : q{'}; +# VMS and Windows need -e "...", most everything else works better with ' +my $quote = $^O =~ /^(VMS|MSWin\d+)$/ ? q{"} : q{'}; # Run some code, return its wait status. sub run {