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
path: root/tests
diff options
context:
space:
mode:
authorLiam Devine <dmail00@gmail.com>2011-09-08 17:24:05 +0400
committerLiam Devine <dmail00@gmail.com>2011-09-08 17:24:05 +0400
commitbf1e7ed1e524e895414438c74474f1537550eea5 (patch)
tree7323434c669c70dad1489ae6454f93fc8e020159 /tests
parent32b96a1f8d972adced98648f9364ad2776da1cc0 (diff)
* Bug 3381149: Path of PCH source file in VS10 not being translated (intyuh)
Re- added unit test removed in 53abc69ab87c Applied patch from intyuh
Diffstat (limited to 'tests')
-rw-r--r--tests/actions/vstudio/test_vs2010_vcxproj.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/actions/vstudio/test_vs2010_vcxproj.lua b/tests/actions/vstudio/test_vs2010_vcxproj.lua
index c28402f..42a5a4c 100644
--- a/tests/actions/vstudio/test_vs2010_vcxproj.lua
+++ b/tests/actions/vstudio/test_vs2010_vcxproj.lua
@@ -335,6 +335,13 @@
test.string_does_not_contain(buffer,debug_config_pch_string)
end
+ function vs10_vcxproj.pchHeaderAndPchSourceSet_bufferContainPchCreate()
+ configuration("Debug")
+ pchheader "foo/dummyHeader.h"
+ pchsource "foo/dummySource.cpp"
+ local buffer = get_buffer()
+ test.string_contains(buffer,debug_config_pch_string)
+ end
function vs10_vcxproj.wholeProgramOptimizationIsNotSetByDefault_bufferDoesNotContainWholeProgramOptimization()
local buffer = get_buffer()