2013-07-27 00:11:45 -07:00
|
|
|
require 'testing_env'
|
|
|
|
require 'test/testball'
|
|
|
|
require 'formula'
|
|
|
|
require 'cxxstdlib'
|
|
|
|
require 'tab'
|
|
|
|
|
|
|
|
class CxxStdlibTests < Test::Unit::TestCase
|
|
|
|
def setup
|
|
|
|
@clang = CxxStdlib.new(:libstdcxx, :clang)
|
|
|
|
@gcc = CxxStdlib.new(:libstdcxx, :gcc)
|
|
|
|
@llvm = CxxStdlib.new(:libstdcxx, :llvm)
|
|
|
|
@gcc4 = CxxStdlib.new(:libstdcxx, :gcc_4_0)
|
|
|
|
@gcc48 = CxxStdlib.new(:libstdcxx, 'gcc-4.8')
|
|
|
|
@gcc49 = CxxStdlib.new(:libstdcxx, 'gcc-4.9')
|
|
|
|
@lcxx = CxxStdlib.new(:libcxx, :clang)
|
2013-10-06 16:59:39 -07:00
|
|
|
@purec = CxxStdlib.new(nil, :clang)
|
2013-07-27 00:11:45 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_apple_libstdcxx_intercompatibility
|
|
|
|
assert @clang.compatible_with?(@gcc)
|
|
|
|
assert @clang.compatible_with?(@llvm)
|
|
|
|
assert @clang.compatible_with?(@gcc4)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_compatibility_same_compilers_and_type
|
2014-04-19 09:11:52 +01:00
|
|
|
assert @gcc.compatible_with?(@gcc)
|
2013-07-27 00:11:45 -07:00
|
|
|
assert @gcc48.compatible_with?(@gcc48)
|
|
|
|
assert @clang.compatible_with?(@clang)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_apple_gnu_libstdcxx_incompatibility
|
|
|
|
assert !@clang.compatible_with?(@gcc48)
|
|
|
|
assert !@gcc48.compatible_with?(@clang)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_gnu_cross_version_incompatibility
|
2014-04-19 09:11:52 +01:00
|
|
|
assert !@gcc48.compatible_with?(@gcc49)
|
|
|
|
assert !@gcc49.compatible_with?(@gcc48)
|
2013-07-27 00:11:45 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_libstdcxx_libcxx_incompatibility
|
|
|
|
assert !@clang.compatible_with?(@lcxx)
|
|
|
|
assert !@lcxx.compatible_with?(@clang)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_apple_compiler_reporting
|
|
|
|
assert @clang.apple_compiler?
|
|
|
|
assert @gcc.apple_compiler?
|
|
|
|
assert @llvm.apple_compiler?
|
|
|
|
assert @gcc4.apple_compiler?
|
|
|
|
assert !@gcc48.apple_compiler?
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_type_string_formatting
|
|
|
|
assert_equal @clang.type_string, 'libstdc++'
|
|
|
|
assert_equal @lcxx.type_string, 'libc++'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_constructing_from_tab
|
|
|
|
stdlib = Tab.dummy_tab.cxxstdlib
|
|
|
|
assert_equal stdlib.compiler, :clang
|
2013-10-07 03:40:41 -07:00
|
|
|
assert_equal stdlib.type, nil
|
2013-07-27 00:11:45 -07:00
|
|
|
end
|
2013-10-06 16:59:39 -07:00
|
|
|
|
|
|
|
def test_compatibility_for_non_cxx_software
|
|
|
|
assert @purec.compatible_with?(@clang)
|
|
|
|
end
|
2013-07-27 00:11:45 -07:00
|
|
|
end
|