socketpair binmode :bytes.
Jarkko Hietaniemi [Thu, 28 Mar 2002 02:00:29 +0000 (02:00 +0000)]
p4raw-id: //depot/perl@15570

ext/Socket/socketpair.t

index 937ffa5..d70f164 100644 (file)
@@ -76,6 +76,9 @@ ok (socketpair (LEFT, RIGHT, AF_UNIX, SOCK_STREAM, PF_UNSPEC),
     "socketpair (LEFT, RIGHT, AF_UNIX, SOCK_STREAM, PF_UNSPEC)")
   or print "# \$\! = $!\n";
 
+binmode(LEFT,  ":bytes");
+binmode(RIGHT, ":bytes");
+
 my @left = ("hello ", "world\n");
 my @right = ("perl ", "rules!"); # Not like I'm trying to bias any survey here.
 
@@ -162,6 +165,9 @@ ok (socketpair (LEFT, RIGHT, AF_UNIX, SOCK_DGRAM, PF_UNSPEC),
     "socketpair (LEFT, RIGHT, AF_UNIX, SOCK_DGRAM, PF_UNSPEC)")
   or print "# \$\! = $!\n";
 
+binmode(LEFT,  ":bytes");
+binmode(RIGHT, ":bytes");
+
 foreach (@left) {
   # is (syswrite (LEFT, $_), length $_, "write " . _qq ($_) . " to left");
   is (syswrite (LEFT, $_), length $_, "syswrite to left");