Merge pull request #1361 from LORgames/ssurtees/simplifyTest

Simplified unit test to resolve path issues
This commit is contained in:
@starkos 2019-11-08 10:06:21 -05:00 committed by GitHub
commit af3509fbef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,19 +4,10 @@
local suite = test.declare("gmake2_buildcommands")
local gmake2 = premake.modules.gmake2
premake.api.register {
name = 'test_libdir', -- this controls the targetdir for StaticLib projects.
scope = 'config',
kind = 'path',
tokens = true,
pathVars = true,
}
local wks, prj, cfg
function suite.setup()
wks = workspace("MyWorkspace")
test_libdir (path.join(_MAIN_SCRIPT_DIR, 'lib'))
configurations { "Debug", "Release" }
prj = test.createProject(wks)
end
@ -39,8 +30,8 @@ function suite.postbuildcommands()
postbuildcommands
{
"mkdir %{cfg.test_libdir}/www",
"mkdir %{cfg.test_libdir}/www"
"mkdir lib/www",
"mkdir lib/www"
}
prepare()