aboutsummaryrefslogtreecommitdiffstats
path: root/test/mkmf/test_sizeof.rb
blob: 4e3c77e8e3e7ad463b2c25bc94fab9ddd2fac591 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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