--
-- tests/solution/test_eachconfig.lua
-- Automated test suite for the solution-level configuration iterator.
-- Copyright (c) 2012 Jason Perkins and the Premake project
T.solution_eachconfig = { }
local suite = T.solution_eachconfig
-- Setup and teardown
local sln
function suite.setup()
sln = solution("MySolution")
end
local function prepare()
_p(2,"-")
for cfg in premake.solution.eachconfig(sln) do
_p(2, "%s:%s", cfg.buildcfg or "", cfg.platform or "")
-- All configurations listed at the solution level should be enumerated.
function suite.listsBuildConfigurations_onSolutionLevel()
configurations { "Debug", "Release" }
project("MyProject")
prepare()
test.capture [[
-
Debug:
Release:
]]
-- Iteration order should be build configurations, then platforms.
function suite.listsInOrder_onBuildConfigsAndPlatforms()
platforms { "x86", "x86_64" }
Debug:x86
Debug:x86_64
Release:x86
Release:x86_64
-- Configurations listed at the project level should *not* be included
-- in the solution-level lists.
function suite.excludesProjectLevelConfigs()
project ("MyProject")
configurations { "PrjDebug", "PrjRelease" }