From: Nick Ing-Simmons Date: Fri, 22 Jun 2001 20:45:12 +0000 (+0000) Subject: Skip |- based op/write.t on Win32 as well as VMS X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7da144458ae5f3165669e6f0a8f2562715984328;p=p5sagit%2Fp5-mst-13.2.git Skip |- based op/write.t on Win32 as well as VMS p4raw-id: //depot/perlio@10836 --- diff --git a/t/op/write.t b/t/op/write.t index 7dddbb4..ac6c035 100755 --- a/t/op/write.t +++ b/t/op/write.t @@ -273,7 +273,7 @@ else # 12..44: scary format testing from Merijn H. Brand -if ($^O eq 'VMS') { +if ($^O eq 'VMS' || $^O eq 'MSWin32') { foreach (12..44) { print "ok $_ # skipped: '|-' and '-|' not supported\n"; } exit(0); }