diff options
author | Laszlo Molnar <laszlo.molnar@eth.ericsson.se> | 1998-02-09 14:19:45 +0100 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-02-12 16:15:43 +0000 |
commit | 0018b59d6c770680881f484bcbc39fc8d4a15036 (patch) | |
tree | afe9f22c1fc7e8624981632044a733bb2e13a90e /t | |
parent | c6f8c383310e5d7c972fc8614c9ce784e00b7bc7 (diff) | |
download | perl-0018b59d6c770680881f484bcbc39fc8d4a15036.tar.gz |
filecopy.t #3 fails on dos-djgpp
p4raw-id: //depot/perl@503
Diffstat (limited to 't')
-rwxr-xr-x | t/lib/filecopy.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/lib/filecopy.t b/t/lib/filecopy.t index b718215a1e..8a23fb6d7d 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; |