Re: socketpair emulation
Nicholas Clark [Wed, 26 Dec 2001 20:08:14 +0000 (20:08 +0000)]
Message-ID: <20011226200813.A11903@Bagpuss.unfortu.net>

p4raw-id: //depot/perl@13906

ext/Socket/socketpair.t

index 804e3af..d2558dc 100644 (file)
@@ -31,7 +31,7 @@ if( !$Config{d_alarm} ) {
     if ($@ =~ /^Your vendor has not defined Socket macro AF_UNIX/) {
       plan skip_all => 'No AF_UNIX';
     } else {
-      plan tests => 44;
+      plan tests => 45;
     }
   }
 }
@@ -71,7 +71,9 @@ ok (shutdown(LEFT, SHUT_WR), "shutdown left for writing");
 {
   local $SIG{ALRM} = sub { warn "EOF on right took over 3 seconds" };
   alarm 3;
+  $! = 0;
   ok (eof RIGHT, "right is at EOF");
+  is ($!, '', 'and $! should report no error');
   alarm 60;
 }