premake/tests/premake4.lua
2008-12-19 14:35:36 +00:00

39 lines
769 B
Lua

--
-- tests/premake4.lua
-- Automated test suite for Premake 4.x
-- Copyright (c) 2008 Jason Perkins and the Premake project
--
dofile("testfx.lua")
dofile("test_dofile.lua")
dofile("test_os.lua")
dofile("test_path.lua")
dofile("test_string.lua")
dofile("test_table.lua")
dofile("test_template.lua")
dofile("test_premake.lua")
dofile("test_project.lua")
dofile("test_api.lua")
dofile("test_targets.lua")
dofile("test_keywords.lua")
--
-- Register a test action
--
premake.actions["test"] = {
description = "Run the automated test suite",
execute = function ()
passed, failed = test.runall()
msg = string.format("%d tests passed, %d failed", passed, failed)
if (failed > 0) then
error(msg, 0)
else
print(msg)
end
end
}