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:30:10 +0400
committerLiam Devine <dmail00@gmail.com>2011-09-08 17:30:10 +0400
commit363a445f72d639db58f39d021b2ec4e4af8e27c4 (patch)
treea6a320950880cd7a50ec219aabdc16395ac2b290 /tests
parentf4aad44cf4edb864192497fca55a6605cf6ed417 (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.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/actions/vstudio/test_vs2010_vcxproj.lua b/tests/actions/vstudio/test_vs2010_vcxproj.lua
index c28402f..d5de698 100644
--- a/tests/actions/vstudio/test_vs2010_vcxproj.lua
+++ b/tests/actions/vstudio/test_vs2010_vcxproj.lua
@@ -334,7 +334,13 @@
local buffer = get_buffer()
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()