summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLaszlo Molnar <laszlo.molnar@eth.ericsson.se>1998-02-09 14:19:45 +0100
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-02-12 16:15:43 +0000
commit0018b59d6c770680881f484bcbc39fc8d4a15036 (patch)
treeafe9f22c1fc7e8624981632044a733bb2e13a90e /t
parentc6f8c383310e5d7c972fc8614c9ce784e00b7bc7 (diff)
downloadperl-0018b59d6c770680881f484bcbc39fc8d4a15036.tar.gz
filecopy.t #3 fails on dos-djgpp
p4raw-id: //depot/perl@503
Diffstat (limited to 't')
-rwxr-xr-xt/lib/filecopy.t1
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;