diff options
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | test/ruby/test_thread.rb | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -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 |
