1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/mkmf/test_sizeof.rb

15 lines
312 B
Ruby
Raw Normal View History

require_relative 'base'
module TestMkmf
class TestSizeof < Test::Unit::TestCase
include TestMkmf
def test_sizeof
open("confdefs.h", "w") {|f|
f.puts "typedef struct {char x;} test1_t;"
}
assert_equal(1, mkmf {size = check_sizeof("test1_t", "confdefs.h")})
end
end
end