summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-20 01:33:40 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-20 01:33:40 +0000
commit776e96d183fefee87d4a4a54e39bf5720ca02bc7 (patch)
treea8cfac621b489de160c95b8a4bce2df02e3b8e10
parent28dd61607e2e42cd568d8fff7304d406126bd2c3 (diff)
test_thread.rb: let main thread exit from Thread.new
* test/ruby/test_thread.rb (test_main_thread_status_at_exit): let the main thread run to ensure exiting from Thread.new. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47224 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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 6701d10226..369cd0a5cd 100644
--- a/test/ruby/test_thread.rb
+++ b/test/ruby/test_thread.rb
@@ -820,6 +820,7 @@ _eom
assert_in_out_err([], <<-'INPUT', ["false false aborting"], [])
Thread.new(Thread.current) {|mth|
begin
+ mth.run
Thead.pass until mth.stop?
p :mth_stopped # don't run if killed by rb_thread_terminate_all
ensure