test/ruby/test_io.rb (test_copy_stream_to_duplex_io): join thread
Don't leave runaway threads as it could affect other tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63952 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
dae0f4388e
commit
304b544651
@ -1188,10 +1188,11 @@ class TestIO < Test::Unit::TestCase
|
|||||||
|
|
||||||
def test_copy_stream_to_duplex_io
|
def test_copy_stream_to_duplex_io
|
||||||
result = IO.pipe {|a,w|
|
result = IO.pipe {|a,w|
|
||||||
Thread.start {w.puts "yes"; w.close}
|
th = Thread.start {w.puts "yes"; w.close}
|
||||||
IO.popen([EnvUtil.rubybin, '-pe$_="#$.:#$_"'], "r+") {|b|
|
IO.popen([EnvUtil.rubybin, '-pe$_="#$.:#$_"'], "r+") {|b|
|
||||||
IO.copy_stream(a, b)
|
IO.copy_stream(a, b)
|
||||||
b.close_write
|
b.close_write
|
||||||
|
assert_join_threads([th])
|
||||||
b.read
|
b.read
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user