diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-08-02 22:28:59 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-08-02 22:28:59 +0000 |
commit | 9f82a64980942b22611342057ad38094f4b84b6f (patch) | |
tree | 3bca602487368ea4f76adc2a76c2778d6f406116 /t/comp/require.t | |
parent | 9dd9db0b5e99ed70382d82a6b55eda97b58bfa75 (diff) | |
download | perl-9f82a64980942b22611342057ad38094f4b84b6f.tar.gz |
require.t needs binmode() to work on windows
p4raw-id: //depot/perl@6497
Diffstat (limited to 't/comp/require.t')
-rwxr-xr-x | t/comp/require.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/comp/require.t b/t/comp/require.t index 418bc3e75a..bfd4a37fc9 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; } |