87 lines
1.8 KiB
Lua
87 lines
1.8 KiB
Lua
--
|
|
-- tests/test_gcc.lua
|
|
-- Automated test suite for the GCC toolset interface.
|
|
-- Copyright (c) 2009-2011 Jason Perkins and the Premake project
|
|
--
|
|
|
|
T.gcc = { }
|
|
local suite = T.gcc
|
|
|
|
local cfg
|
|
function suite.setup()
|
|
cfg = { }
|
|
cfg.basedir = "."
|
|
cfg.location = "."
|
|
cfg.language = "C++"
|
|
cfg.project = { name = "MyProject" }
|
|
cfg.flags = { }
|
|
cfg.objectsdir = "obj"
|
|
cfg.platform = "Native"
|
|
cfg.links = { }
|
|
cfg.libdirs = { }
|
|
cfg.linktarget = { fullpath="libMyProject.a" }
|
|
end
|
|
|
|
|
|
--
|
|
-- CPPFLAGS tests
|
|
--
|
|
|
|
function suite.cppflags_OnWindows()
|
|
cfg.system = "windows"
|
|
local r = premake.gcc.getcppflags(cfg)
|
|
test.isequal("-MMD -MP", table.concat(r, " "))
|
|
end
|
|
|
|
function suite.cppflags_OnHaiku()
|
|
cfg.system = "haiku"
|
|
local r = premake.gcc.getcppflags(cfg)
|
|
test.isequal("-MMD", table.concat(r, " "))
|
|
end
|
|
|
|
|
|
|
|
--
|
|
-- CFLAGS tests
|
|
--
|
|
|
|
function suite.cflags_SharedLib_Windows()
|
|
cfg.kind = "SharedLib"
|
|
cfg.system = "windows"
|
|
local r = premake.gcc.getcflags(cfg)
|
|
test.isequal('', table.concat(r,"|"))
|
|
end
|
|
|
|
|
|
function suite.cflags_OnFpFast()
|
|
cfg.flags = { "FloatFast" }
|
|
local r = premake.gcc.getcflags(cfg)
|
|
test.isequal('-ffast-math', table.concat(r,"|"))
|
|
end
|
|
|
|
|
|
function suite.cflags_OnFpStrict()
|
|
cfg.flags = { "FloatStrict" }
|
|
local r = premake.gcc.getcflags(cfg)
|
|
test.isequal('-ffloat-store', table.concat(r,"|"))
|
|
end
|
|
|
|
|
|
--
|
|
-- LDFLAGS tests
|
|
--
|
|
|
|
function suite.ldflags_SharedLib_Windows()
|
|
cfg.kind = "SharedLib"
|
|
cfg.system = "windows"
|
|
local r = premake.gcc.getldflags(cfg)
|
|
test.isequal('-s|-shared|-Wl,--out-implib="libMyProject.a"', table.concat(r,"|"))
|
|
end
|
|
|
|
|
|
function suite.linkflags_OnFrameworks()
|
|
cfg.links = { "Cocoa.framework" }
|
|
local r = premake.gcc.getlinkflags(cfg)
|
|
test.isequal('-framework Cocoa', table.concat(r,"|"))
|
|
end
|