From: Laszlo Molnar Date: Mon, 9 Feb 1998 13:19:45 +0000 (+0100) Subject: filecopy.t #3 fails on dos-djgpp X-Git-Tag: accepted/trunk/20130322.191538~37877 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0018b59d6c770680881f484bcbc39fc8d4a15036;p=platform%2Fupstream%2Fperl.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;