From: Gurusamy Sarathy Date: Wed, 2 Aug 2000 22:28:59 +0000 (+0000) Subject: require.t needs binmode() to work on windows X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9f82a64980942b22611342057ad38094f4b84b6f;p=p5sagit%2Fp5-mst-13.2.git require.t needs binmode() to work on windows p4raw-id: //depot/perl@6497 --- diff --git a/t/comp/require.t b/t/comp/require.t index 418bc3e..bfd4a37 100755 --- a/t/comp/require.t +++ b/t/comp/require.t @@ -19,6 +19,7 @@ sub do_require { sub write_file { my $f = shift; open(REQ,">$f") or die "Can't write '$f': $!"; + binmode REQ; print REQ @_; close REQ; }