17f1843c71
A number of tests were relying on the fact that x32/x64 were being converted implicitly to x86/x86_64. If/when we retire those symbols, all of those tests would break. Renamed them now to avoid having to sort it out later. Also fixed up comments to keep everything consistent.
87 lines
2.0 KiB
Lua
87 lines
2.0 KiB
Lua
---
|
|
-- tests/oven/test_objdirs.lua
|
|
-- Test the per-configuration object directory assignments.
|
|
-- Copyright (c) 2014 Jason Perkins and the Premake project
|
|
---
|
|
|
|
local suite = test.declare("oven_objdirs")
|
|
local oven = premake.oven
|
|
|
|
local sln, prj
|
|
|
|
---
|
|
-- Setup
|
|
---
|
|
|
|
function suite.setup()
|
|
end
|
|
|
|
local function result(buildcfg, platform)
|
|
local cfg = test.getconfig(prj, buildcfg, platform)
|
|
return path.getrelative(os.getcwd(), cfg.objdir)
|
|
end
|
|
|
|
|
|
|
|
function suite.singleProject_noPlatforms()
|
|
sln = solution "MySolution"
|
|
configurations { "Debug", "Release" }
|
|
prj = project "MyProject"
|
|
|
|
test.isequal("obj/Debug", result("Debug"))
|
|
test.isequal("obj/Release", result("Release"))
|
|
end
|
|
|
|
|
|
function suite.multipleProjects_noPlatforms()
|
|
sln = solution "MySolution"
|
|
configurations { "Debug", "Release" }
|
|
prj = project "MyProject"
|
|
project "MyProject2"
|
|
|
|
test.createproject(sln)
|
|
test.isequal("obj/Debug/MyProject", result("Debug"))
|
|
end
|
|
|
|
|
|
function suite.singleProject_withPlatforms()
|
|
sln = solution "MySolution"
|
|
configurations { "Debug", "Release" }
|
|
platforms { "x86", "x86_64" }
|
|
prj = project "MyProject"
|
|
|
|
test.isequal("obj/x86/Debug", result("Debug", "x86"))
|
|
end
|
|
|
|
|
|
function suite.singleProject_uniqueByTokens_noPlatforms()
|
|
sln = solution "MySolution"
|
|
configurations { "Debug", "Release" }
|
|
prj = project "MyProject"
|
|
objdir "obj/%{cfg.buildcfg}"
|
|
|
|
test.isequal("obj/Debug", result("Debug"))
|
|
end
|
|
|
|
|
|
function suite.singleProject_uniqueByTokens_withPlatforms()
|
|
sln = solution "MySolution"
|
|
configurations { "Debug", "Release" }
|
|
platforms { "x86", "x86_64" }
|
|
prj = project "MyProject"
|
|
objdir "obj/%{cfg.buildcfg}_%{cfg.platform}"
|
|
|
|
test.isequal("obj/Debug_x86", result("Debug", "x86"))
|
|
end
|
|
|
|
|
|
function suite.allowOverlap_onPrefixCode()
|
|
sln = solution "MySolution"
|
|
configurations { "Debug", "Release" }
|
|
platforms { "x86", "x86_64" }
|
|
prj = project "MyProject"
|
|
objdir "!obj/%{cfg.buildcfg}"
|
|
|
|
test.isequal("obj/Debug", result("Debug", "x86"))
|
|
end
|