1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/core/mutex/unlock_spec.rb
eregon 401b64c4e8 Update to ruby/spec@c1b568b
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-03-04 15:09:32 +00:00

38 lines
823 B
Ruby

require_relative '../../spec_helper'
describe "Mutex#unlock" do
it "raises ThreadError unless Mutex is locked" do
mutex = Mutex.new
lambda { mutex.unlock }.should raise_error(ThreadError)
end
it "raises ThreadError unless thread owns Mutex" do
mutex = Mutex.new
wait = Mutex.new
wait.lock
th = Thread.new do
mutex.lock
wait.lock
end
# avoid race on mutex.lock
Thread.pass until mutex.locked?
Thread.pass while th.status and th.status != "sleep"
lambda { mutex.unlock }.should raise_error(ThreadError)
wait.unlock
th.join
end
it "raises ThreadError if previously locking thread is gone" do
mutex = Mutex.new
th = Thread.new do
mutex.lock
end
th.join
lambda { mutex.unlock }.should raise_error(ThreadError)
end
end