mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
b38cc52c13
* test/mkmf/base.rb (TestMkmf::MKMFLOG): show mkmf.log at failures. * test/mkmf/base.rb (TestMkmf#teardown): close log file for each tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30159 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
18 lines
465 B
Ruby
18 lines
465 B
Ruby
require_relative 'base'
|
|
|
|
class TestMkmf
|
|
class TestSizeof < TestMkmf
|
|
def test_sizeof_builtin
|
|
%w[char short int long float double void*].each do |type|
|
|
assert_kind_of(Integer, mkmf {check_sizeof(type)}, MKMFLOG)
|
|
end
|
|
end
|
|
|
|
def test_sizeof_struct
|
|
open("confdefs.h", "w") {|f|
|
|
f.puts "typedef struct {char x;} test1_t;"
|
|
}
|
|
assert_equal(1, mkmf {check_sizeof("test1_t", "confdefs.h")}, MKMFLOG)
|
|
end
|
|
end
|
|
end
|