2015-12-16 08:07:31 +03:00
|
|
|
# frozen_string_literal: false
|
2010-07-23 11:14:54 +04:00
|
|
|
require 'test/unit'
|
|
|
|
require 'thread'
|
|
|
|
require 'mutex_m'
|
|
|
|
|
|
|
|
class TestMutexM < Test::Unit::TestCase
|
|
|
|
def test_cv_wait
|
|
|
|
o = Object.new
|
2010-08-10 16:02:52 +04:00
|
|
|
o.instance_variable_set(:@foo, nil)
|
2010-07-23 11:14:54 +04:00
|
|
|
o.extend(Mutex_m)
|
2016-08-30 09:22:30 +03:00
|
|
|
c = Thread::ConditionVariable.new
|
2010-07-23 11:14:54 +04:00
|
|
|
t = Thread.start {
|
|
|
|
o.synchronize do
|
|
|
|
until foo = o.instance_variable_get(:@foo)
|
|
|
|
c.wait(o)
|
|
|
|
end
|
|
|
|
foo
|
|
|
|
end
|
|
|
|
}
|
|
|
|
sleep(0.0001)
|
|
|
|
o.synchronize do
|
|
|
|
o.instance_variable_set(:@foo, "abc")
|
|
|
|
end
|
|
|
|
c.signal
|
|
|
|
assert_equal "abc", t.value
|
|
|
|
end
|
|
|
|
end
|