Fix ruby %alias directive for native c functions
Using the %alias directive on native C functions causes swig to segfault due to
a dereference of klass (which is NULL for native C functions) in the
defineAliases function of the Ruby module. This commit adds support for an alias
of native C functions for both separate module as well as global functions, as
well as three test cases for the %alias directive of the Ruby module.
Fixes:
mod.i
%module ruby_alias
%alias get_my_name "nickname,fullname";
%inline %{
const char *get_my_name(){
return "Chester Tester";
}
%}
$ swig -ruby mod.i
Segmentation fault
Signed-off-by: Joel Anderson <joelanderson333@gmail.com>
This commit is contained in:
parent
6fac581a2b
commit
a1cea4f483
8 changed files with 129 additions and 1 deletions
20
Examples/test-suite/ruby/ruby_alias_global_function_runme.rb
Normal file
20
Examples/test-suite/ruby/ruby_alias_global_function_runme.rb
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#!/usr/bin/env ruby
|
||||
#
|
||||
# Runtime tests for ruby_alias_global_function.i
|
||||
#
|
||||
|
||||
require 'swig_assert'
|
||||
require 'ruby_alias_global_function'
|
||||
|
||||
expected_name = get_my_name
|
||||
|
||||
swig_assert(fullname == expected_name, msg: "nickname not working as expected")
|
||||
swig_assert(nickname == expected_name, msg: "fullname not working as expected")
|
||||
|
||||
if method(:nickname).respond_to?(:original_name)
|
||||
swig_assert_equal_simple(method(:nickname).original_name, :get_my_name)
|
||||
swig_assert_equal_simple(method(:fullname).original_name, :get_my_name)
|
||||
else
|
||||
swig_assert(method(:nickname) == method(:get_my_name), msg: "nickname is not an alias of get_my_name")
|
||||
swig_assert(method(:fullname) == method(:get_my_name), msg: "fullname is not an alias of get_my_name")
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue