* test/monitor/test_monitor.rb (test_cond): use Queue#deq
insteadof sleep. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5156 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e5d803e671
commit
2a3f367151
@ -1,3 +1,8 @@
|
|||||||
|
Wed Dec 10 15:01:19 2003 Shugo Maeda <shugo@ruby-lang.org>
|
||||||
|
|
||||||
|
* test/monitor/test_monitor.rb (test_cond): use Queue#deq
|
||||||
|
insteadof sleep.
|
||||||
|
|
||||||
Wed Dec 10 14:45:39 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
Wed Dec 10 14:45:39 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
* ext/pty/pty.c (HAVE_SYS_IOCTL_H): already defined at config.h, so
|
* ext/pty/pty.c (HAVE_SYS_IOCTL_H): already defined at config.h, so
|
||||||
|
@ -113,8 +113,9 @@ class TestMonitor < Test::Unit::TestCase
|
|||||||
end
|
end
|
||||||
|
|
||||||
c = "foo"
|
c = "foo"
|
||||||
|
queue3 = Queue.new
|
||||||
Thread.start do
|
Thread.start do
|
||||||
sleep(0.2)
|
queue3.deq
|
||||||
@monitor.synchronize do
|
@monitor.synchronize do
|
||||||
c = "bar"
|
c = "bar"
|
||||||
cond.signal
|
cond.signal
|
||||||
@ -125,6 +126,7 @@ class TestMonitor < Test::Unit::TestCase
|
|||||||
result3 = cond.wait(0.1)
|
result3 = cond.wait(0.1)
|
||||||
assert_equal(false, result3)
|
assert_equal(false, result3)
|
||||||
assert_equal("foo", c)
|
assert_equal("foo", c)
|
||||||
|
queue3.enq(nil)
|
||||||
result4 = cond.wait
|
result4 = cond.wait
|
||||||
assert_equal(true, result4)
|
assert_equal(true, result4)
|
||||||
assert_equal("bar", c)
|
assert_equal("bar", c)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user