diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-09-21 04:54:46 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-09-21 04:54:46 +0000 |
commit | 34ac0ea7bfa0544cc26b943218069d35789e88fd (patch) | |
tree | e2b3b3d256fd8cd5dae9f7534c1605fb7c810c3a /bootstraptest | |
parent | 39fd4a87e8d745cdb76fd3573a9c59e82e7a7ece (diff) | |
download | ruby-34ac0ea7bfa0544cc26b943218069d35789e88fd.tar.gz |
wait until the thread is stopped.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47667 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r-- | bootstraptest/test_thread.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstraptest/test_thread.rb b/bootstraptest/test_thread.rb index 048aeb19c2..d64f44be49 100644 --- a/bootstraptest/test_thread.rb +++ b/bootstraptest/test_thread.rb @@ -85,7 +85,7 @@ assert_equal %q{ok}, %q{ ans = :ok end } - Thread.pass + Thread.pass until t.stop? t.kill t.join ans |