From: Laszlo Molnar Date: Mon, 9 Feb 1998 13:19:45 +0000 (+0100) Subject: filecopy.t #3 fails on dos-djgpp X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0018b59d6c770680881f484bcbc39fc8d4a15036;p=p5sagit%2Fp5-mst-13.2.git filecopy.t #3 fails on dos-djgpp p4raw-id: //depot/perl@503 --- diff --git a/t/lib/filecopy.t b/t/lib/filecopy.t index b718215..8a23fb6 100755 --- a/t/lib/filecopy.t +++ b/t/lib/filecopy.t @@ -13,6 +13,7 @@ use File::Copy; # First we create a file open(F, ">file-$$") or die; +binmode F; # for DOSISH platforms, because test 3 copies to stdout print F "ok 3\n"; close F;