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:
Diffstat (limited to 'tests/actions/vstudio/vc2010/files.lua')
-rwxr-xr-xtests/actions/vstudio/vc2010/files.lua67
1 files changed, 67 insertions, 0 deletions
diff --git a/tests/actions/vstudio/vc2010/files.lua b/tests/actions/vstudio/vc2010/files.lua
new file mode 100755
index 0000000..685f338
--- /dev/null
+++ b/tests/actions/vstudio/vc2010/files.lua
@@ -0,0 +1,67 @@
+--
+-- tests/actions/vstudio/vc2010/files.lua
+-- Validate generation of files block in Visual Studio 2010 C/C++ projects.
+-- Copyright (c) 2011 Jason Perkins and the Premake project
+--
+
+ T.vstudio_vs2010_files = { }
+ local suite = T.vstudio_vs2010_files
+ local vc2010 = premake.vstudio.vc2010
+
+
+--
+-- Setup
+--
+
+ local sln, prj
+
+ function suite.setup()
+ sln = test.createsolution()
+ end
+
+ local function prepare()
+ premake.buildconfigs()
+ prj = premake.solution.getproject(sln, 1)
+ sln.vstudio_configs = premake.vstudio.buildconfigs(sln)
+ vc2010.files(prj)
+ end
+
+
+--
+-- Test grouping and nesting
+--
+
+ function suite.SimpleSourceFile()
+ files { "hello.c" }
+ prepare()
+ test.capture [[
+ <ItemGroup>
+ <ClCompile Include="hello.c">
+ </ClCompile>
+ </ItemGroup>
+ ]]
+ end
+
+
+ function suite.SingleFolderLevel()
+ files { "src/hello.c" }
+ prepare()
+ test.capture [[
+ <ItemGroup>
+ <ClCompile Include="src\hello.c">
+ </ClCompile>
+ </ItemGroup>
+ ]]
+ end
+
+
+ function suite.MultipleFolderLevels()
+ files { "src/greetings/hello.c" }
+ prepare()
+ test.capture [[
+ <ItemGroup>
+ <ClCompile Include="src\greetings\hello.c">
+ </ClCompile>
+ </ItemGroup>
+ ]]
+ end