summaryrefslogtreecommitdiff
path: root/test/ruby/test_io.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_io.rb')
-rw-r--r--test/ruby/test_io.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 0c1c6b2d2b..0f448dbf39 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -857,6 +857,30 @@ class TestIO < Test::Unit::TestCase
end)
end
+ def test_read_nonblock_error
+ return if !have_nonblock?
+ with_pipe {|r, w|
+ begin
+ r.read_nonblock 4096
+ rescue Errno::EWOULDBLOCK
+ assert_match(/WANT_READ/, $!.message)
+ end
+ }
+ end
+
+ def test_write_nonblock_error
+ return if !have_nonblock?
+ with_pipe {|r, w|
+ begin
+ loop {
+ w.write_nonblock "a"*100000
+ }
+ rescue Errno::EWOULDBLOCK
+ assert_match(/WANT_WRITE/, $!.message)
+ end
+ }
+ end
+
def test_gets
pipe(proc do |w|
w.write "foobarbaz"