summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2001-07-09 04:36:30 +0000
committerGurusamy Sarathy <gsar@cpan.org>2001-07-09 04:36:30 +0000
commitee2f883e168d1bf008aa8d3180fc540f3d4f87e4 (patch)
tree4c428ced00b44d3d563ed90f167b75f2e2da47e1 /t
parent32a424d2df47fd067c31c959b00e93dab590259a (diff)
downloadperl-ee2f883e168d1bf008aa8d3180fc540f3d4f87e4.tar.gz
run/exit.t busted on windows
p4raw-id: //depot/perl@11231
Diffstat (limited to 't')
-rw-r--r--t/run/exit.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/run/exit.t b/t/run/exit.t
index 828b83228a..20c2c49f02 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 {