mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
27b8ef7ff7
We no longer use it this function, but extensions do, and we need to ensure it continues to work for them. * thread.c (rb_thread_fd_close): schedule other threads in loop * ext/-test-/thread_fd_close/thread_fd_close.c: new file * ext/-test-/thread_fd_close/depend: ditto * ext/-test-/thread_fd_close/extconf.rb: ditto * test/-ext-/thread_fd_close/test_thread_fd_close.rb: new test git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
23 lines
487 B
Ruby
23 lines
487 B
Ruby
# frozen_string_literal: true
|
|
require 'test/unit'
|
|
require '-test-/thread_fd_close'
|
|
require 'io/wait'
|
|
|
|
class TestThreadFdClose < Test::Unit::TestCase
|
|
|
|
def test_thread_fd_close
|
|
IO.pipe do |r, w|
|
|
th = Thread.new do
|
|
begin
|
|
r.read(4)
|
|
ensure
|
|
w.syswrite('done')
|
|
end
|
|
end
|
|
Thread.pass until th.stop?
|
|
IO.thread_fd_close(r.fileno)
|
|
assert_equal 'done', r.read(4)
|
|
assert_raise(IOError) { th.join }
|
|
end
|
|
end
|
|
end
|