1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/dl/test_c_union_entity.rb
usa 00e4c2e362 * test/dl/test_c_{struct,union}_entity.rb: broken require.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35901 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-06-04 04:10:44 +00:00

32 lines
757 B
Ruby

require_relative 'test_base'
require 'dl/function'
require 'dl/value'
require 'dl/struct'
class DL::TestCUnionEntity < DL::TestBase
def test_class_size
size = DL::CUnionEntity.size([DL::TYPE_DOUBLE, DL::TYPE_CHAR])
assert_equal DL::SIZEOF_DOUBLE, size
end
def test_class_size_with_count
size = DL::CUnionEntity.size([[DL::TYPE_DOUBLE, 2], [DL::TYPE_CHAR, 20]])
assert_equal DL::SIZEOF_CHAR * 20, size
end
def test_set_ctypes
union = DL::CUnionEntity.malloc [DL::TYPE_INT, DL::TYPE_LONG]
union.assign_names %w[int long]
# this test is roundabout because the stored ctypes are not accessible
union['long'] = 1
assert_equal 1, union['long']
union['int'] = 1
assert_equal 1, union['int']
end
end