projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9dd9db0
)
require.t needs binmode() to work on windows
author
Gurusamy Sarathy
<gsar@cpan.org>
Wed, 2 Aug 2000 22:28:59 +0000
(22:28 +0000)
committer
Gurusamy Sarathy
<gsar@cpan.org>
Wed, 2 Aug 2000 22:28:59 +0000
(22:28 +0000)
p4raw-id: //depot/perl@6497
t/comp/require.t
patch
|
blob
|
history
diff --git
a/t/comp/require.t
b/t/comp/require.t
index
418bc3e
..
bfd4a37
100755
(executable)
--- 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;
}