* test/dl/test_callback.rb (test_callback_with_string): prevents

temporary string from GC.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33127 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2011-08-30 13:39:31 +00:00
Родитель 13d3a16ada
Коммит 527be1b25a
2 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Tue Aug 30 22:34:45 2011 CHIKANAGA Tomoyuki <nagachika00@gmail.com>
* test/dl/test_callback.rb (test_callback_with_string): prevents
temporary string from GC.
Tue Aug 30 22:25:38 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* vm_insnhelper.c (vm_call_cfunc): revert r33112. RB_GC_GUARD macro

Просмотреть файл

@ -48,8 +48,11 @@ module DL
func = CFunc.new(addr, TYPE_VOID, 'test')
f = Function.new(func, [TYPE_VOIDP])
f.call(dlwrap('foo'))
assert_equal 'foo', called_with
# Don't remove local variable arg.
# This necessary to protect objects from GC.
arg = 'foo'
f.call(dlwrap(arg))
assert_equal arg, called_with
end
def test_call_callback