From ee2f883e168d1bf008aa8d3180fc540f3d4f87e4 Mon Sep 17 00:00:00 2001 From: Gurusamy Sarathy Date: Mon, 9 Jul 2001 04:36:30 +0000 Subject: [PATCH] run/exit.t busted on windows p4raw-id: //depot/perl@11231 --- t/run/exit.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 { -- 2.7.4