Merge pull request #4655 from bdbaddog/fix_new_ninja_package
[scons.git] / test / MSVS / vs-6.0-exec.py
blob7cffb48373658939936e0b34759dbf5754499930
1 #!/usr/bin/env python
3 # __COPYRIGHT__
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__"
27 """
28 Test that we can actually build a simple program using our generated
29 Visual Studio 6 project (.dsp) and solution (.dsw) files.
30 """
32 import os
33 import sys
35 import TestSConsMSVS
37 test = TestSConsMSVS.TestSConsMSVS()
39 if sys.platform != 'win32':
40 msg = "Skipping Visual Studio test on non-Windows platform '%s'\n" % sys.platform
41 test.skip_test(msg)
43 msvs_version = '6.0'
45 if not msvs_version in test.msvs_versions():
46 msg = "Visual Studio %s not installed; skipping test.\n" % msvs_version
47 test.skip_test(msg)
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')
57 if env.WhereIs('cl'):
58 print("os.environ.update(%%s)" %% repr(env['ENV']))
59 """ % locals())
61 if test.stdout() == "":
62 msg = "Visual Studio %s missing cl.exe; skipping test.\n" % msvs_version
63 test.skip_test(msg)
65 exec(test.stdout())
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',
75 srcs = ['foo.c'],
76 buildtarget = 'foo.exe',
77 variant = 'Release')
79 env.Program('foo.c')
80 """ % locals())
82 test.write(['sub dir', 'foo.c'], r"""
83 int
84 main(int argc, char *argv)
86 printf("foo.c\n");
87 exit (0);
89 """)
91 test.run(chdir='sub dir', arguments='.')
93 test.unlink_files('sub dir', ['foo.exe', 'foo.obj', '.sconsign.dblite'])
95 test.run(chdir='sub dir',
96 program=[test.get_msvs_executable(msvs_version)],
97 arguments=['foo.dsp', '/MAKE', 'foo - Win32 Release'])
99 test.run(program=test.workpath('sub dir', 'foo'), stdout="foo.c\n")
103 test.pass_test()
105 # Local Variables:
106 # tab-width:4
107 # indent-tabs-mode:nil
108 # End:
109 # vim: set expandtab tabstop=4 shiftwidth=4: