summaryrefslogtreecommitdiff
path: root/test/mkmf/test_config.rb
blob: 4a9be57e0a74a9ffe11f178880c25e314bee1bba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$extmk = true

require 'test/unit'
require 'mkmf'
require_relative '../ruby/envutil'

class TestMkmf < Test::Unit::TestCase
  class TestConfig < Test::Unit::TestCase
    def test_dir_config
      bug8074 = '[Bug #8074]'
      lib = RbConfig.expand(RbConfig::MAKEFILE_CONFIG["libdir"], "exec_prefix"=>"")
      assert_separately %w[-rmkmf - -- --with-foo-dir=/test/foo], %{
        assert_equal(%w[/test/foo/include /test/foo#{lib}], dir_config("foo"), #{bug8074.dump})
      }
    end
  end
end