Added new tests.
Updated swig_gc interface to make it simpler. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9696 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
fd79f15521
commit
522403958e
5 changed files with 77 additions and 12 deletions
46
Examples/test-suite/ruby/access_change_runme.rb
Executable file
46
Examples/test-suite/ruby/access_change_runme.rb
Executable file
|
|
@ -0,0 +1,46 @@
|
|||
#!/usr/bin/env ruby
|
||||
#
|
||||
# Put script description here.
|
||||
#
|
||||
# Author:: gga
|
||||
# Copyright:: 2007
|
||||
# License:: SWIG
|
||||
#
|
||||
|
||||
require 'swig_assert'
|
||||
require 'access_change'
|
||||
|
||||
|
||||
#
|
||||
# this test will currently fail, as it exposes functions that were
|
||||
# made protected from public. swig limitation for now.
|
||||
#
|
||||
exit(0)
|
||||
|
||||
include Access_change
|
||||
|
||||
klass = BaseInt.new
|
||||
public = ['PublicProtectedPublic1', 'PublicProtectedPublic2',
|
||||
'PublicProtectedPublic3', 'PublicProtectedPublic4']
|
||||
methods = (klass.public_methods - Object.methods).sort
|
||||
pmethods = (klass.protected_methods - Object.methods).sort
|
||||
swig_assert( methods == public,
|
||||
" incorrect public methods for BaseInt\n" +
|
||||
"#{methods.inspect} !=\n#{public.inspect}" )
|
||||
|
||||
klass = DerivedInt.new
|
||||
public = ['PublicProtectedPublic3', 'PublicProtectedPublic4',
|
||||
'WasProtected1', 'WasProtected2', 'WasProtected3', 'WasProtected4']
|
||||
methods = (klass.public_methods - Object.methods).sort
|
||||
swig_assert( methods == public,
|
||||
" incorrect public methods for DerivedInt\n" +
|
||||
"#{methods.inspect} !=\n#{public.inspect}" )
|
||||
|
||||
klass = BottomInt.new
|
||||
public = ['PublicProtectedPublic1', 'PublicProtectedPublic2',
|
||||
'PublicProtectedPublic3', 'PublicProtectedPublic4',
|
||||
'WasProtected1', 'WasProtected2']
|
||||
methods = (klass.public_methods - Object.methods).sort
|
||||
swig_assert( methods == public,
|
||||
" incorrect public methods for BottomInt\n" +
|
||||
"#{methods.inspect} !=\n#{public.inspect}" )
|
||||
20
Examples/test-suite/ruby/add_link_runme.rb
Executable file
20
Examples/test-suite/ruby/add_link_runme.rb
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
#!/usr/bin/env ruby
|
||||
#
|
||||
# Put script description here.
|
||||
#
|
||||
# Author:: gga
|
||||
# Copyright:: 2007
|
||||
# License:: Ruby
|
||||
#
|
||||
|
||||
require 'swig_assert'
|
||||
require 'add_link'
|
||||
include Add_link
|
||||
|
||||
#
|
||||
# This test currently fails due to swig
|
||||
#
|
||||
exit(0)
|
||||
|
||||
swig_assert( 'Foo.new' )
|
||||
swig_assert( 'Foo.blah' )
|
||||
|
|
@ -24,12 +24,11 @@ require 'newobject1'
|
|||
include Newobject1
|
||||
|
||||
|
||||
stats = nil
|
||||
stats = GC.stats(stats, Foo)
|
||||
GC.stats(Foo)
|
||||
100.times { foo1 = Foo.makeFoo; foo2 = foo1.makeMore }
|
||||
stats = GC.stats(stats, Foo)
|
||||
GC.stats(Foo)
|
||||
swig_assert( 'Foo.fooCount == 200', "but is #{Foo.fooCount}" )
|
||||
GC.start
|
||||
stats = GC.stats(stats, Foo)
|
||||
GC.stats(Foo)
|
||||
swig_assert( 'Foo.fooCount <= 2', "but is #{Foo.fooCount}" )
|
||||
|
||||
|
|
|
|||
|
|
@ -17,12 +17,11 @@ require 'newobject2'
|
|||
|
||||
include Newobject2
|
||||
|
||||
stats = nil
|
||||
stats = GC.stats(stats, Foo)
|
||||
GC.stats(Foo)
|
||||
100.times { foo1 = makeFoo }
|
||||
stats = GC.stats(stats, Foo)
|
||||
GC.stats(Foo)
|
||||
swig_assert( 'fooCount == 100', "but is #{fooCount}" )
|
||||
GC.start
|
||||
stats = GC.stats(stats, Foo)
|
||||
GC.stats(Foo)
|
||||
swig_assert( 'fooCount <= 1', "but is #{fooCount}" )
|
||||
|
||||
|
|
|
|||
|
|
@ -12,23 +12,24 @@
|
|||
# and check on what GC has collected since last call.
|
||||
#
|
||||
module GC
|
||||
def self.stats(last_stat = nil, klass = nil)
|
||||
@@last_stat = nil
|
||||
def self.stats(klass = nil)
|
||||
stats = Hash.new(0)
|
||||
ObjectSpace.each_object {|o| stats[o.class] += 1}
|
||||
|
||||
if klass
|
||||
v = stats[klass]
|
||||
printf "%-30s %10d", klass.to_s, v
|
||||
printf " | delta %10d", (v - last_stat[klass]) if last_stat
|
||||
printf " | delta %10d", (v - @@last_stat[klass]) if @@last_stat
|
||||
puts
|
||||
else
|
||||
stats.sort {|(k1,v1),(k2,v2)| v2 <=> v1}.each do |k,v|
|
||||
printf "%-30s %10d", k, v
|
||||
printf " | delta %10d", (v - last_stat[k]) if last_stat
|
||||
printf " | delta %10d", (v - @@last_stat[k]) if @@last_stat
|
||||
puts
|
||||
end
|
||||
end
|
||||
|
||||
stats
|
||||
@@last_stat = stats
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue