diff options
Diffstat (limited to 't/lib/filecopy.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; |