Ruby testcase fix
Reportedly failing. Failure can be replicated with 2.5.1 by increasing number of loops. Workaround is to disable GC. Closes #1646
This commit is contained in:
parent
db3774ac8d
commit
8041bfdf09
1 changed files with 2 additions and 0 deletions
|
|
@ -18,10 +18,12 @@ require 'newobject2'
|
|||
include Newobject2
|
||||
|
||||
GC.track_class = Foo
|
||||
GC.disable
|
||||
GC.stats if $VERBOSE
|
||||
100.times { foo1 = makeFoo }
|
||||
GC.stats if $VERBOSE
|
||||
swig_assert( 'fooCount == 100', nil, "but is #{fooCount}" )
|
||||
GC.enable
|
||||
GC.start
|
||||
swig_assert( 'fooCount <= 1', nil, "but is #{fooCount}" )
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue