1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Increase timeout

http://rubyci.s3.amazonaws.com/unstable10s/ruby-trunk/log/20161215T021909Z.fail.html.gz

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57109 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2016-12-18 11:28:01 +00:00
parent 0854193a68
commit 86f229ec32

View file

@ -174,7 +174,7 @@ class TestSymbol < Test::Unit::TestCase
end
def test_to_proc_iseq
assert_separately([], <<~"end;", timeout: 1) # do
assert_separately([], <<~"end;", timeout: 5) # do
bug11845 = '[ruby-core:72381] [Bug #11845]'
assert_nil(:class.to_proc.source_location, bug11845)
assert_equal([[:rest]], :class.to_proc.parameters, bug11845)
@ -186,7 +186,7 @@ class TestSymbol < Test::Unit::TestCase
end
def test_to_proc_binding
assert_separately([], <<~"end;", timeout: 1) # do
assert_separately([], <<~"end;", timeout: 5) # do
bug12137 = '[ruby-core:74100] [Bug #12137]'
assert_raise(ArgumentError, bug12137) {
:succ.to_proc.binding
@ -454,7 +454,7 @@ class TestSymbol < Test::Unit::TestCase
def test_symbol_fstr_leak
bug10686 = '[ruby-core:67268] [Bug #10686]'
x = x = 0
assert_no_memory_leak([], '200_000.times { |i| i.to_s.to_sym }; GC.start', <<-"end;", bug10686, limit: 1.71, rss: true)
assert_no_memory_leak([], '200_000.times { |i| i.to_s.to_sym }; GC.start', <<-"end;", bug10686, limit: 1.71, rss: true, timeout: 20)
200_000.times { |i| (i + 200_000).to_s.to_sym }
end;
end