summaryrefslogtreecommitdiff
path: root/test/socket/test_nonblock.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/socket/test_nonblock.rb')
-rw-r--r--test/socket/test_nonblock.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/socket/test_nonblock.rb b/test/socket/test_nonblock.rb
index e8e7fca95f..f29766886f 100644
--- a/test/socket/test_nonblock.rb
+++ b/test/socket/test_nonblock.rb
@@ -196,6 +196,8 @@ class TestSocketNonblock < Test::Unit::TestCase
loop {
c.sendmsg_nonblock("a" * 100000)
}
+ rescue NotImplementedError
+ skip "sendmsg not implemented on this platform."
rescue Errno::EWOULDBLOCK
assert_kind_of(IO::WaitWritable, $!)
end
@@ -206,6 +208,8 @@ class TestSocketNonblock < Test::Unit::TestCase
tcp_pair {|c, s|
begin
c.recvmsg_nonblock(4096)
+ rescue NotImplementedError
+ skip "sendmsg not implemented on this platform."
rescue Errno::EWOULDBLOCK
assert_kind_of(IO::WaitReadable, $!)
end