зеркало из https://github.com/github/ruby.git
27 строки
551 B
Ruby
27 строки
551 B
Ruby
# frozen_string_literal: false
|
|
require 'test/unit'
|
|
require 'mutex_m'
|
|
|
|
class TestMutexM < Test::Unit::TestCase
|
|
def test_cv_wait
|
|
o = Object.new
|
|
o.instance_variable_set(:@foo, nil)
|
|
o.extend(Mutex_m)
|
|
c = Thread::ConditionVariable.new
|
|
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
|