--
-- tests/test_clang.lua
-- Automated test suite for the GCC toolset interface.
-- Copyright (c) 2009-2013 Jason Perkins and the Premake project
local p = premake
local suite = test.declare("tools_clang")
local clang = p.tools.clang
local project = p.project
-- Setup/teardown
local wks, prj, cfg
function suite.setup()
wks, prj = test.createWorkspace()
system "Linux"
end
local function prepare()
cfg = test.getconfig(prj, "Debug")
-- Check Mac OS X deployment target flags
function suite.cflags_macosx_systemversion()
system "MacOSX"
systemversion "10.9"
prepare()
test.contains({ "-mmacosx-version-min=10.9" }, clang.getcflags(cfg))
function suite.cxxflags_macosx_systemversion()
test.contains({ "-mmacosx-version-min=10.9" }, clang.getcxxflags(cfg))
function suite.cxxflags_macosx_systemversion_unspecified()
test.excludes({ "-mmacosx-version-min=10.9" }, clang.getcxxflags(cfg))
-- Check iOS deployment target flags
function suite.cflags_ios_systemversion()
system "iOS"
systemversion "12.1"
test.contains({ "-miphoneos-version-min=12.1" }, clang.getcflags(cfg))
function suite.cxxflags_ios_systemversion()
systemversion "5.0"
test.contains({ "-miphoneos-version-min=5.0" }, clang.getcxxflags(cfg))