summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2001-08-03 11:16:16 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2001-08-03 20:45:10 +0000
commitc2f0b9b90df219c247538067e1d131fb80adadb0 (patch)
tree8b9fb0432e740313296aebbfeedf798c1e538498
parent6f24f39d75e844cc3d1cf132bef7deb3cf5aeff4 (diff)
downloadperl-c2f0b9b90df219c247538067e1d131fb80adadb0.tar.gz
fix t/op/misc.t for VMS
Message-Id: <5.1.0.14.0.20010803161026.03530e58@exchi01> p4raw-id: //depot/perl@11566
-rwxr-xr-xt/op/misc.t1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/op/misc.t b/t/op/misc.t
index b00f4b1b74..86c8162fc9 100755
--- a/t/op/misc.t
+++ b/t/op/misc.t
@@ -48,6 +48,7 @@ for (@prgs){
# bison says 'parse error' instead of 'syntax error',
# various yaccs may or may not capitalize 'syntax'.
$results =~ s/^(syntax|parse) error/syntax error/mig;
+ $results =~ s/\n\n/\n/ if $^O eq 'VMS'; # pipes double these sometimes
$expected =~ s/\n+$//;
if ( $results ne $expected ) {
print STDERR "PROG: $switch\n$prog\n";