summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-26 14:14:18 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-26 14:14:18 +0000
commit08ca33e98cbea50f64569445b1856631431a8871 (patch)
treea61c02198f5ac79d33bb1f7df8dcdba474c69d67 /test
parentb4aa884f06ee5c40f88e90f312ea6b31c120f308 (diff)
io.c: fix race between read and close
* io.c (io_fillbuf): fix race between read and close, in the case the IO gets closed before the reading thread achieve the lock. [ruby-core:78845] [Bug #13076] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57199 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index f2a287a543..687c27c63d 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -3366,6 +3366,36 @@ __END__
end
end if File::BINARY != 0
+ def test_race_gets_and_close
+ assert_separately([], "#{<<-"begin;"}\n#{<<-"end;"}")
+ bug13076 = '[ruby-core:78845] [Bug #13076]'
+ begin;
+ 100.times do |i|
+ a = []
+ t = []
+ 10.times do
+ r,w = IO.pipe
+ a << [r,w]
+ t << Thread.new do
+ begin
+ while r.gets
+ end
+ rescue IOError
+ end
+ end
+ end
+ a.each do |r,w|
+ w.puts "hoge"
+ w.close
+ r.close
+ end
+ assert_nothing_raised(IOError, bug13076) {
+ t.each(&:join)
+ }
+ end
+ end;
+ end
+
if RUBY_ENGINE == "ruby" # implementation details
def test_foreach_rs_conversion
make_tempfile {|t|