summaryrefslogtreecommitdiff
path: root/spec/ruby
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-20 23:49:30 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-20 23:49:30 +0000
commitb895c402a5c27f8b4604bc2293cf616c89dc41f2 (patch)
tree39e854c48b29b776dd29001ab8eb8686745a3ba1 /spec/ruby
parent098c8d5491add1475dbf7fb8889bd53f47d5c8ca (diff)
fix threading bug.
* spec/ruby/core/thread/element_set_spec.rb: `t` can be uninitialized. Use `Thread.current` explicitly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61375 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby')
-rw-r--r--spec/ruby/core/thread/element_set_spec.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/ruby/core/thread/element_set_spec.rb b/spec/ruby/core/thread/element_set_spec.rb
index b76078f685..fe993df95d 100644
--- a/spec/ruby/core/thread/element_set_spec.rb
+++ b/spec/ruby/core/thread/element_set_spec.rb
@@ -9,9 +9,10 @@ describe "Thread#[]=" do
it "raises a RuntimeError if the thread is frozen" do
running = false
t = Thread.new do
- t.freeze
+ th = Thread.current
+ th.freeze
-> {
- t[:foo] = "bar"
+ th[:foo] = "bar"
}.should raise_error(RuntimeError, /frozen/)
end
t.join