mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
912c42bebf
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25687 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
32 lines
666 B
Ruby
32 lines
666 B
Ruby
require_relative 'test_base'
|
|
require_relative '../ruby/envutil'
|
|
|
|
module DL
|
|
class TestCallback < TestBase
|
|
include DL
|
|
|
|
def test_callback_with_string
|
|
called_with = nil
|
|
addr = set_callback(TYPE_VOID, 1) do |str|
|
|
called_with = dlunwrap(str)
|
|
end
|
|
func = CFunc.new(addr, TYPE_VOID, 'test')
|
|
|
|
func.call([dlwrap('foo')])
|
|
assert_equal 'foo', called_with
|
|
end
|
|
|
|
def test_call_callback
|
|
called = false
|
|
|
|
addr = set_callback(TYPE_VOID, 0) do
|
|
called = true
|
|
end
|
|
|
|
func = CFunc.new(addr, TYPE_VOID, 'test')
|
|
func.call([])
|
|
|
|
assert called, 'function should be called'
|
|
end
|
|
end
|
|
end
|