summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-20 06:25:23 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-20 06:25:23 +0000
commita339ca5106ebba77725ec73130b11f321d6e4dc3 (patch)
treec9f742ca99f85b2e64c80313d81dcf1816254926 /test
parent2ebea1180e09c57b5a1fc7764ef17dba600c486d (diff)
* test/ruby/test_thread.rb (test_mutex_unlock_on_trap): extend waiting
time to invocation of signal handler from 0.01 sec to 0.2 sec. RubyCI report error on mswin. reported by @unak git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@43732 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_thread.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_thread.rb b/test/ruby/test_thread.rb
index 9cd55bcbed..4aed34d5ba 100644
--- a/test/ruby/test_thread.rb
+++ b/test/ruby/test_thread.rb
@@ -889,7 +889,7 @@ Thread.new(Thread.current) {|mth|
m.lock
puts "locked"
Process.kill("INT", $$)
- sleep 0.01
+ sleep 0.2
puts m.locked?
INPUT
end