diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-12 03:23:26 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-12 03:23:26 +0000 |
commit | 4024c853fe54761ed855ab7a98d8b015be1ec94d (patch) | |
tree | ccf34125b929c308b78c29fc681fe25b39d7120a /ext | |
parent | e83fb983710f86c2e7983e2a395e8b92bdc9a754 (diff) | |
download | perl-4024c853fe54761ed855ab7a98d8b015be1ec94d.tar.gz |
BeOS still has no good sockets.
p4raw-id: //depot/perl@13647
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/IO/lib/IO/t/io_sel.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/IO/lib/IO/t/io_sel.t b/ext/IO/lib/IO/t/io_sel.t index 009c251252..1e72e38930 100755 --- a/ext/IO/lib/IO/t/io_sel.t +++ b/ext/IO/lib/IO/t/io_sel.t @@ -49,7 +49,7 @@ $sel->remove([\*STDOUT, 5]); print "not " unless $sel->count == 0 && !defined($sel->bits); print "ok 9\n"; -if ( grep $^O eq $_, qw(MSWin32 NetWare dos VMS riscos) ) { +if ( grep $^O eq $_, qw(MSWin32 NetWare dos VMS riscos beos) ) { for (10 .. 15) { print "ok $_ # skip: 4-arg select is only valid on sockets\n" } |