From: Craig A. Berry Date: Fri, 3 Aug 2001 16:16:16 +0000 (-0500) Subject: fix t/op/misc.t for VMS X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c2f0b9b90df219c247538067e1d131fb80adadb0;p=p5sagit%2Fp5-mst-13.2.git fix t/op/misc.t for VMS Message-Id: <5.1.0.14.0.20010803161026.03530e58@exchi01> p4raw-id: //depot/perl@11566 --- diff --git a/t/op/misc.t b/t/op/misc.t index b00f4b1..86c8162 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";