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

* test/ruby/test_const.rb (TestConst#test_redefinition_memory_leak): extend the

timeout because mswin CI reports timeout.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48646 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2014-11-29 06:01:49 +00:00
parent 75ec406b43
commit c8da47e859

View file

@ -67,6 +67,6 @@ $stderr.reopen(File::NULL, "wb")
350000.times { FOO = :BAR }
$stderr.reopen(olderr)
PRE
assert_no_memory_leak([], '', code, 'redefined constant')
assert_no_memory_leak([], '', code, 'redefined constant', timeout: 30)
end
end