summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/io/nonblock/test_flush.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/io/nonblock/test_flush.rb b/test/io/nonblock/test_flush.rb
index 40dbe94b3a..e3dca072d7 100644
--- a/test/io/nonblock/test_flush.rb
+++ b/test/io/nonblock/test_flush.rb
@@ -4,8 +4,10 @@ begin
rescue LoadError
end
+Thread.abort_on_exception = true
class TestIONonblock < Test::Unit::TestCase
def test_flush # [ruby-dev:24985]
+ flunk "IO#close can't interrupt IO blocking on YARV"
r,w = IO.pipe
w.nonblock = true
w.sync = false