aboutsummaryrefslogtreecommitdiffstats
path: root/test/mkmf/test_sizeof.rb
blob: d35811f3f6da761afe5b187317c44de3e159ef6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require_relative 'base'

class TestMkmf
  class TestSizeof < TestMkmf
    def test_sizeof
      open("confdefs.h", "w") {|f|
        f.puts "typedef struct {char x;} test1_t;"
      }
      assert_equal(1, mkmf {check_sizeof("test1_t", "confdefs.h")})
    end
  end
end