Issue 2505: fix use of pre-compiled headers when the source .cpp
[scons.git] / test / MSVS / runfile.py
1
2 #!/usr/bin/env python
3 #
4 # __COPYRIGHT__
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining
7 # a copy of this software and associated documentation files (the
8 # "Software"), to deal in the Software without restriction, including
9 # without limitation the rights to use, copy, modify, merge, publish,
10 # distribute, sublicense, and/or sell copies of the Software, and to
11 # permit persons to whom the Software is furnished to do so, subject to
12 # the following conditions:
13 #
14 # The above copyright notice and this permission notice shall be included
15 # in all copies or substantial portions of the Software.
16 #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
18 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
19 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 #
25
26 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
27
28 """
29 Test that we can generate Visual Studio 8.0 project (.vcproj) and
30 solution (.sln) files that look correct.
31 """
32
33 import os
34 import sys
35
36 import TestSConsMSVS
37
38 test = TestSConsMSVS.TestSConsMSVS()
39
40 if sys.platform != 'win32':
41     msg = "Skipping Visual Studio test on non-Windows platform '%s'\n" % sys.platform
42     test.skip_test(msg)
43
44 expected_vcprojfile = """\
45 <?xml version="1.0" encoding="Windows-1252"?>
46 <VisualStudioProject
47 \tProjectType="Visual C++"
48 \tVersion="8.00"
49 \tName="Test"
50 \tProjectGUID="<PROJECT_GUID>"
51 \tSccProjectName=""
52 \tSccLocalPath=""
53 \tRootNamespace="Test"
54 \tKeyword="MakeFileProj">
55 \t<Platforms>
56 \t\t<Platform
57 \t\t\tName="Win32"/>
58 \t</Platforms>
59 \t<ToolFiles>
60 \t</ToolFiles>
61 \t<Configurations>
62 \t\t<Configuration
63 \t\t\tName="Release|Win32"
64 \t\t\tConfigurationType="0"
65 \t\t\tUseOfMFC="0"
66 \t\t\tATLMinimizesCRunTimeLibraryUsage="false"
67 \t\t\t>
68 \t\t\t<Tool
69 \t\t\t\tName="VCNMakeTool"
70 \t\t\t\tBuildCommandLine="echo Starting SCons &amp;&amp; &quot;<PYTHON>&quot; -c &quot;<SCONS_SCRIPT_MAIN_XML>&quot; -C &quot;<WORKPATH>&quot; -f SConstruct &quot;Test.exe&quot;"
71 \t\t\t\tReBuildCommandLine="echo Starting SCons &amp;&amp; &quot;<PYTHON>&quot; -c &quot;<SCONS_SCRIPT_MAIN_XML>&quot; -C &quot;<WORKPATH>&quot; -f SConstruct &quot;Test.exe&quot;"
72 \t\t\t\tCleanCommandLine="echo Starting SCons &amp;&amp; &quot;<PYTHON>&quot; -c &quot;<SCONS_SCRIPT_MAIN_XML>&quot; -C &quot;<WORKPATH>&quot; -f SConstruct -c &quot;Test.exe&quot;"
73 \t\t\t\tOutput="runfile.exe"
74 \t\t\t\tPreprocessorDefinitions=""
75 \t\t\t\tIncludeSearchPath=""
76 \t\t\t\tForcedIncludes=""
77 \t\t\t\tAssemblySearchPath=""
78 \t\t\t\tForcedUsingAssemblies=""
79 \t\t\t\tCompileAsManaged=""
80 \t\t\t/>
81 \t\t</Configuration>
82 \t</Configurations>
83 \t<References>
84 \t</References>
85 \t<Files>
86 \t\t\t<File
87 \t\t\t\tRelativePath="test.cpp">
88 \t\t\t</File>
89 \t\t<File
90 \t\t\tRelativePath="<SCONSCRIPT>">
91 \t\t</File>
92 \t</Files>
93 \t<Globals>
94 \t</Globals>
95 </VisualStudioProject>
96 """
97
98
99
100 SConscript_contents = """\
101 env=Environment(tools=['msvs'], MSVS_VERSION = '8.0')
102
103 env.MSVSProject(target = 'Test.vcproj',
104                 slnguid = '{SLNGUID}',
105                 srcs = ['test.cpp'],
106                 buildtarget = 'Test.exe',
107                 runfile = 'runfile.exe',
108                 variant = 'Release',
109                 auto_build_solution = 0)
110 """
111
112
113
114 test.subdir('work1')
115
116 test.write(['work1', 'SConstruct'], SConscript_contents)
117
118 test.run(chdir='work1', arguments="Test.vcproj")
119
120 test.must_exist(test.workpath('work1', 'Test.vcproj'))
121 vcproj = test.read(['work1', 'Test.vcproj'], 'r')
122 expect = test.msvs_substitute(expected_vcprojfile, '8.0', 'work1', 'SConstruct')
123 # don't compare the pickled data
124 assert vcproj[:len(expect)] == expect, test.diff_substr(expect, vcproj)
125
126
127
128 test.pass_test()
129
130 # Local Variables:
131 # tab-width:4
132 # indent-tabs-mode:nil
133 # End:
134 # vim: set expandtab tabstop=4 shiftwidth=4: