etc. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9785 626c5289-ae23-0410-ae9c-e8d60b6d4f22
45 lines
843 B
Ruby
Executable file
45 lines
843 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
#
|
|
# Put script description here.
|
|
#
|
|
#
|
|
#
|
|
#
|
|
#
|
|
|
|
require 'swig_assert'
|
|
require 'apply_signed_char'
|
|
|
|
include Apply_signed_char
|
|
|
|
|
|
['CharValFunction', 'CCharValFunction', 'CCharRefFunction'].each do |m|
|
|
[ 3, -3 ].each do |v|
|
|
val = send( m, v )
|
|
swig_assert( "v == val", binding, "for #{m}")
|
|
end
|
|
end
|
|
|
|
{ 'globalchar' => -109,
|
|
'globalconstchar' => -110,
|
|
}.each do |k,v|
|
|
val = Apply_signed_char.send( k )
|
|
swig_assert( "v == val", binding, "for #{k}")
|
|
end
|
|
|
|
|
|
a = DirectorTest.new
|
|
|
|
['CharValFunction', 'CCharValFunction', 'CCharRefFunction'].each do |m|
|
|
[ 3, -3 ].each do |v|
|
|
val = a.send( m, v )
|
|
swig_assert( "v == val", binding, "for DirectorTest.#{m}")
|
|
end
|
|
end
|
|
|
|
{ 'memberchar' => -111,
|
|
'memberconstchar' => -112,
|
|
}.each do |k,v|
|
|
val = a.send( k )
|
|
swig_assert( "v == val", binding, "for #{k}")
|
|
end
|