ruby-changes:21988
From: naruse <ko1@a...>
Date: Wed, 14 Dec 2011 11:26:30 +0900 (JST)
Subject: [ruby-changes:21988] naruse:r34037 (trunk): The test added in r34034 needs to run thousands of times.
naruse 2011-12-14 11:26:17 +0900 (Wed, 14 Dec 2011) New Revision: 34037 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=34037 Log: The test added in r34034 needs to run thousands of times. Modified files: trunk/test/thread/test_queue.rb Index: test/thread/test_queue.rb =================================================================== --- test/thread/test_queue.rb (revision 34036) +++ test/thread/test_queue.rb (revision 34037) @@ -58,16 +58,17 @@ 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 + 2000.times do + require "thread" + queue = Queue.new + r, w = IO.pipe + th = Thread.start { + queue.push(nil) + r.read 1 + } + queue.pop + th.kill.join + end _eom end - end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/