1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Add test for [Bug #5343] [ruby-core:39634]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34034 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2011-12-14 00:23:43 +00:00
parent 8e9ab33988
commit 8cec0d5653

View file

@ -1,5 +1,6 @@
require 'test/unit'
require 'thread'
require_relative '../ruby/envutil'
class TestQueue < Test::Unit::TestCase
def test_queue
@ -53,4 +54,20 @@ class TestQueue < Test::Unit::TestCase
assert_raise(ArgumentError) { q.max = -1 }
assert_equal(1, q.max)
end
def test_thr_kill
bug5343 = '[ruby-core:39634]'
assert_normal_exit(<<-'_eom', bug5343)
require "thread"
queue = Queue.new
r, w = IO.pipe
th = Thread.start {
queue.push(nil)
r.read 1
}
queue.pop
th.kill.join
_eom
end
end