summaryrefslogtreecommitdiff
path: root/test/ruby/test_thread.rb
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-13 14:22:48 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-13 14:22:48 +0000
commit31ad92b2f3829002aabfe27b0b4cb8dc237c03d8 (patch)
treee6ebb15acb07f96253b3ea9d3058d7cc14ed44f8 /test/ruby/test_thread.rb
parentcdc2278f890c7e9715b2b8cb7d7cdbdfd4200b8b (diff)
* test/ruby/test_thread.rb (test_list): call Thread.pass to run t1.
fixed [ruby-core:18264]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_thread.rb')
-rw-r--r--test/ruby/test_thread.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_thread.rb b/test/ruby/test_thread.rb
index 046eaec7bf..043917f2ec 100644
--- a/test/ruby/test_thread.rb
+++ b/test/ruby/test_thread.rb
@@ -225,6 +225,7 @@ class TestThread < Test::Unit::TestCase
def test_list
assert_in_out_err([], <<-INPUT) do |r, e|
t1 = Thread.new { sleep }
+ Thread.pass
t2 = Thread.new { loop { } }
t3 = Thread.new { }.join
p [Thread.current, t1, t2].sort_by {|t| t.object_id }