diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-12 03:19:56 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-12 03:19:56 +0000 |
commit | c3da91e634fa1dbc5175952c0e76ed1c5a3f3968 (patch) | |
tree | 070f02ca7c21f028e06530000518541e896b22b1 /ext | |
parent | c11d6c2969ff7b70520b264ffab6467982e12734 (diff) | |
download | perl-c3da91e634fa1dbc5175952c0e76ed1c5a3f3968.tar.gz |
BeOS sockets are not true sockets.
p4raw-id: //depot/perl@13646
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/IO/lib/IO/t/io_poll.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/IO/lib/IO/t/io_poll.t b/ext/IO/lib/IO/t/io_poll.t index 8d157b5e6e..f987d9905f 100755 --- a/ext/IO/lib/IO/t/io_poll.t +++ b/ext/IO/lib/IO/t/io_poll.t @@ -39,7 +39,7 @@ print "ok 2\n"; $poll->poll(0.1); -if ($^O eq 'MSWin32' || $^O eq 'NetWare' || $^O eq 'VMS') { +if ($^O eq 'MSWin32' || $^O eq 'NetWare' || $^O eq 'VMS' || $^O eq 'beos') { print "ok 3 # skipped, doesn't work on non-socket fds\n"; print "ok 4 # skipped, doesn't work on non-socket fds\n"; } |