Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Perkins <starkos@industriousone.com>2011-11-09 01:43:49 +0400
committerJason Perkins <starkos@industriousone.com>2011-11-09 01:43:49 +0400
commit94a054c1a0a83133189e9c2b6b939a8a8f8abf66 (patch)
tree34baf1e767703def8bc3c3bff002fc63e1a7cf60 /tests/premake4.lua
parent66b9c9e785e1234a9fc825e73bf7c47d9fca53bd (diff)
Patch 3381066: Fix VS2010 project references
Diffstat (limited to 'tests/premake4.lua')
-rw-r--r--tests/premake4.lua19
1 files changed, 10 insertions, 9 deletions
diff --git a/tests/premake4.lua b/tests/premake4.lua
index 9f5030e..1b5ab45 100644
--- a/tests/premake4.lua
+++ b/tests/premake4.lua
@@ -13,7 +13,7 @@
test.createsolution = function()
local sln = solution "MySolution"
configurations { "Debug", "Release" }
-
+
local prj = project "MyProject"
language "C++"
kind "ConsoleApp"
@@ -25,7 +25,7 @@
test.createproject = function(sln)
local n = #sln.projects + 1
if n == 1 then n = "" end
-
+
local prj = project ("MyProject" .. n)
language "C++"
kind "ConsoleApp"
@@ -60,14 +60,14 @@
dofile("test_project.lua")
dofile("project/test_eachfile.lua")
dofile("project/test_vpaths.lua")
-
+
-- Baking tests
dofile("base/test_baking.lua")
dofile("baking/test_merging.lua")
-
+
-- Clean tests
dofile("actions/test_clean.lua")
-
+
-- Visual Studio tests
dofile("test_vs2002_sln.lua")
dofile("test_vs2003_sln.lua")
@@ -100,12 +100,13 @@
dofile("actions/vstudio/vc200x/header.lua")
dofile("actions/vstudio/vc200x/files.lua")
dofile("actions/vstudio/vc200x/test_filters.lua")
-
+
-- Visual Studio 2010 C/C++ projects
dofile("actions/vstudio/vc2010/test_debugdir.lua")
dofile("actions/vstudio/vc2010/test_header.lua")
dofile("actions/vstudio/vc2010/test_files.lua")
dofile("actions/vstudio/vc2010/test_filters.lua")
+ dofile("actions/vstudio/vc2010/test_links.lua")
dofile("actions/vstudio/vc2010/test_pch.lua")
-- Makefile tests
@@ -123,10 +124,10 @@
-- Xcode4 tests
dofile("actions/xcode/test_xcode4_project.lua")
dofile("actions/xcode/test_xcode4_workspace.lua")
-
+
-- CodeLite tests
dofile("actions/codelite/codelite_files.lua")
-
+
-- CodeBlocks tests
dofile("actions/codeblocks/codeblocks_files.lua")
dofile("actions/codeblocks/test_filters.lua")
@@ -138,7 +139,7 @@
newaction {
trigger = "test",
description = "Run the automated test suite",
-
+
execute = function ()
passed, failed = test.runall()
msg = string.format("%d tests passed, %d failed", passed, failed)