summaryrefslogtreecommitdiff
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
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
-rw-r--r--ChangeLog6
-rw-r--r--test/ruby/test_thread.rb2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c1580daca2..3b70a51d43 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Nov 20 15:20:00 2013 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>
+
+ * 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
+
Wed Nov 13 11:57:01 2013 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>
* lib/rubygems: Update to RubyGems 2.0.14. [ruby-core:58300]
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