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>2010-05-11 00:02:58 +0400
committerJason Perkins <starkos@industriousone.com>2010-05-11 00:02:58 +0400
commit9c47fe65e75bb26930658666d84451fd9cb83ffa (patch)
tree4bf03b09526878dc9fbbfd70c48c9d1f5296b168 /tests/test_project.lua
parentabdbdb9e60f9aea1218fe01cbc1905ded0dc60ea (diff)
Bug 2997728: Project dependencies should be case-sensitive
Diffstat (limited to 'tests/test_project.lua')
-rw-r--r--tests/test_project.lua14
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/test_project.lua b/tests/test_project.lua
index fab64bb..fea449d 100644
--- a/tests/test_project.lua
+++ b/tests/test_project.lua
@@ -1,7 +1,7 @@
--
-- tests/test_project.lua
-- Automated test suite for the project support functions.
--- Copyright (c) 2008, 2009 Jason Perkins and the Premake project
+-- Copyright (c) 2008-2010 Jason Perkins and the Premake project
--
local _project = premake.project
@@ -23,6 +23,18 @@
--
+-- findproject() tests
+--
+
+ function T.project.findproject_IsCaseSensitive()
+ local sln = test.createsolution()
+ local prj = test.createproject(sln)
+ premake.buildconfigs()
+ test.isnil(premake.findproject("myproject"))
+ end
+
+
+--
-- getfilename() tests
--