summaryrefslogtreecommitdiff
path: root/test/ruby/test_symbol.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-01 15:51:20 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-01 15:51:20 +0000
commit92ad578a4023ca1fa3de16485a00720b4376d4e9 (patch)
treee174a46f9cf765a39a15f5d1e733f543d0867fdf /test/ruby/test_symbol.rb
parent58ddc7a03f9e1020b734b9d69d787fef46370545 (diff)
test_symbol.rb: relax
* test/ruby/test_symbol.rb (test_to_proc): relax the timeout. [ruby-core:70961] [Bug #11560] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51998 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_symbol.rb')
-rw-r--r--test/ruby/test_symbol.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb
index bf2c4adbc9..50e39ac482 100644
--- a/test/ruby/test_symbol.rb
+++ b/test/ruby/test_symbol.rb
@@ -123,7 +123,7 @@ class TestSymbol < Test::Unit::TestCase
true.tap(&:itself)
end;
- assert_ruby_status([], <<-"end;", timeout: 0.1)
+ assert_ruby_status([], <<-"end;", timeout: 5.0)
GC.stress = true
100.times {Proc.new(&:itself)}
end;