5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
17 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
18 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 __revision__
= "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
28 Test that we can actually build a simple program using our generated
29 Visual Studio 6 project (.dsp) and solution (.dsw) files.
37 test
= TestSConsMSVS
.TestSConsMSVS()
39 if sys
.platform
!= 'win32':
40 msg
= "Skipping Visual Studio test on non-Windows platform '%s'\n" % sys
.platform
45 if not msvs_version
in test
.msvs_versions():
46 msg
= "Visual Studio %s not installed; skipping test.\n" % msvs_version
51 # Let SCons figure out the Visual Studio environment variables for us and
52 # print out a statement that we can exec to suck them into our external
53 # environment so we can execute msdev and really try to build something.
55 test
.run(arguments
= '-n -q -Q -f -', stdin
= """\
56 env = Environment(tools = ['msvc'], MSVS_VERSION='%(msvs_version)s')
58 print("os.environ.update(%%s)" %% repr(env['ENV']))
61 if test
.stdout() == "":
62 msg
= "Visual Studio %s missing cl.exe; skipping test.\n" % msvs_version
69 test
.subdir('sub dir')
71 test
.write(['sub dir', 'SConstruct'], """\
72 env=Environment(MSVS_VERSION = '%(msvs_version)s')
74 env.MSVSProject(target = 'foo.dsp',
76 buildtarget = 'foo.exe',
82 test
.write(['sub dir', 'foo.c'], r
"""
84 main(int argc, char *argv)
91 test
.run(chdir
='sub dir', arguments
='.')
93 test
.run(chdir
='sub dir',
94 program
=[test
.get_msvs_executable(msvs_version
)],
95 arguments
=['Test.dsp', '/MAKE', 'foo - Win32 Release'])
97 test
.run(program
=test
.workpath('sub dir', 'foo'), stdout
="foo.c\n")
105 # indent-tabs-mode:nil
107 # vim: set expandtab tabstop=4 shiftwidth=4: