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:
authorLiam Devine <dmail00@gmail.com>2011-05-01 01:33:52 +0400
committerLiam Devine <dmail00@gmail.com>2011-05-01 01:33:52 +0400
commita544afbdf9620fc3cb60594c21fa9952f1f359a9 (patch)
treecc28241090d419aabe526b344f48f5bd280515b4
parent8a38d5adee96bb42d8af3c6c28cfb0cd2fb7711f (diff)
removing dead code
-rw-r--r--tests/actions/vstudio/test_vs2010_flags.lua2
-rw-r--r--tests/actions/vstudio/test_vs2010_project_kinds.lua8
2 files changed, 0 insertions, 10 deletions
diff --git a/tests/actions/vstudio/test_vs2010_flags.lua b/tests/actions/vstudio/test_vs2010_flags.lua
index f58ef82..5af82e5 100644
--- a/tests/actions/vstudio/test_vs2010_flags.lua
+++ b/tests/actions/vstudio/test_vs2010_flags.lua
@@ -331,7 +331,6 @@ end
function vs10_managedFlag.globals_bufferDoesNotContainKeywordWin32Proj()
local sln, prj = vs10_managedFlag_setOnProject()
- --prj.flags = {["Managed"]=1}
local buffer = get_managed_buffer(sln,prj)
test.string_does_not_contain(buffer,'<PropertyGroup Label="Globals">.*<Keyword>Win32Proj</Keyword>.*</PropertyGroup>')
end
@@ -339,7 +338,6 @@ end
function vs10_managedFlag.globals_FrameworkVersion_setToV4()
local sln, prj = vs10_managedFlag_setOnProject()
- --prj.flags = {["Managed"]=1}
local buffer = get_managed_buffer(sln,prj)
test.string_contains(buffer,'<PropertyGroup Label="Globals">.*<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>.*</PropertyGroup>')
end
diff --git a/tests/actions/vstudio/test_vs2010_project_kinds.lua b/tests/actions/vstudio/test_vs2010_project_kinds.lua
index 14839e5..5561220 100644
--- a/tests/actions/vstudio/test_vs2010_project_kinds.lua
+++ b/tests/actions/vstudio/test_vs2010_project_kinds.lua
@@ -35,11 +35,6 @@
end
- --[[
-check OutDir in debug it is showing "."
-shared lib missing <ImportLibrary>???</ImportLibrary> in link section when noInportLib not used
- --]]
- --check why <MinimalRebuild>true</MinimalRebuild> is missing in a debug static lib and shared lib build
function vs10_project_kinds.staticLib_valueInMinimalRebuildIsTrue()
kind "StaticLib"
flags {"Symbols"}
@@ -52,7 +47,6 @@ shared lib missing <ImportLibrary>???</ImportLibrary> in link section when noIn
local buffer = get_buffer()
test.string_contains(buffer,'<ClCompile>.*<MinimalRebuild>true</MinimalRebuild>.*</ClCompile>')
end
- --shared lib missing <DebugInformationFormat>EditAndContinue</DebugInformationFormat> in ClCompile section
function vs10_project_kinds.sharedLib_valueDebugInformationFormatIsEditAndContinue()
kind "SharedLib"
flags {"Symbols"}
@@ -76,7 +70,6 @@ shared lib missing <ImportLibrary>???</ImportLibrary> in link section when noIn
local buffer = get_buffer()
test.string_contains(buffer,'<Link>.*<ImportLibrary>MyProject.lib</ImportLibrary>.*</Link>')
end
- --should this go in vs2010_flags???
function vs10_project_kinds.sharedLib_withNoImportLibraryFlag_linkSectionContainsImportLibrary()
kind "SharedLib"
@@ -130,7 +123,6 @@ shared lib missing <ImportLibrary>???</ImportLibrary> in link section when noIn
test.string_contains(buffer,'<LinkIncremental.*false</LinkIncremental>')
end
- --check all configs %(AdditionalIncludeDirectories) missing before AdditionalIncludeDirectories end tag in ClCompile
function vs10_project_kinds.kindDoesNotMatter_noAdditionalDirectoriesSpecified_bufferDoesNotContainAdditionalIncludeDirectories()
kind "SharedLib"
local buffer = get_buffer()