diff options
Diffstat (limited to 't/lib/io_sel.t')
-rwxr-xr-x | t/lib/io_sel.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib/io_sel.t b/t/lib/io_sel.t index 5d1dce3ef9..84660db183 100755 --- a/t/lib/io_sel.t +++ b/t/lib/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 ($^O eq 'MSWin32' || $^O eq 'dos') { # 4-arg select is only valid on sockets +if ($^O eq 'MSWin32' || $^O eq 'NetWare' || $^O eq 'dos') { # 4-arg select is only valid on sockets print "# skipping tests 10..15\n"; for (10 .. 15) { print "ok $_\n" } $sel->add(\*STDOUT); # update |