summaryrefslogtreecommitdiffstats
path: root/test/MSVS/vs-7.1-exec.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-10-06 17:15:02 (GMT)
committerSteven Knight <knight@baldmt.com>2005-10-06 17:15:02 (GMT)
commit401ef15c42e9df4f60103dc52b806b3c8ab259fb (patch)
tree5b83b7fdbc9e3f19a418d0560efba1b3493f46bf /test/MSVS/vs-7.1-exec.py
parent94210da347b187979caa2c5c5b4542455eee8c24 (diff)
downloadSCons-401ef15c42e9df4f60103dc52b806b3c8ab259fb.zip
SCons-401ef15c42e9df4f60103dc52b806b3c8ab259fb.tar.gz
SCons-401ef15c42e9df4f60103dc52b806b3c8ab259fb.tar.bz2
Refactor MSVS tests to separate file-generation tests (which can be executed on any Windows system) from Visual Studio execution tests (which need a specific VS version installed).
Diffstat (limited to 'test/MSVS/vs-7.1-exec.py')
-rw-r--r--test/MSVS/vs-7.1-exec.py93
1 files changed, 93 insertions, 0 deletions
diff --git a/test/MSVS/vs-7.1-exec.py b/test/MSVS/vs-7.1-exec.py
new file mode 100644
index 0000000..f546aa5
--- /dev/null
+++ b/test/MSVS/vs-7.1-exec.py
@@ -0,0 +1,93 @@
+#!/usr/bin/env python
+#
+# __COPYRIGHT__
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+#
+
+__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
+
+"""
+Test that we can actually build a simple program using our generated
+Visual Studio 7.1 project (.vcproj) and solution (.sln) files.
+"""
+
+import os
+import sys
+
+import TestSCons
+
+test = TestSCons.TestSCons()
+
+if sys.platform != 'win32':
+ msg = "Skipping Visual Studio test on non-Windows platform '%s'\n" % sys.platform
+ test.skip_test(msg)
+
+if not '7.1' in test.msvs_versions():
+ msg = "Visual Studio 7.1 not installed; skipping test.\n"
+ test.skip_test(msg)
+
+
+
+# Let SCons figure out the Visual Studio environment variables for us and
+# print out a statement that we can exec to suck them into our external
+# environment so we can execute devenv and really try to build something.
+
+test.run(arguments = '-n -q -Q -f -', stdin = """\
+env = Environment(tools = ['msvc'])
+print "os.environ.update(%s)" % repr(env['ENV'])
+""")
+
+exec(test.stdout())
+
+
+
+test.write('SConstruct', """\
+env=Environment(MSVS_VERSION = '7.1')
+
+env.MSVSProject(target = 'foo.vcproj',
+ srcs = ['foo.c'],
+ buildtarget = 'foo.exe',
+ variant = 'Release')
+
+env.Program('foo.c')
+""")
+
+test.write('foo.c', r"""
+int
+main(int argc, char *argv)
+{
+ printf("foo.c\n");
+ exit (0);
+}
+""")
+
+test.run(arguments='.')
+
+test.vcproj_sys_path('foo.vcproj')
+
+test.run(program=['devenv'],
+ arguments=['foo.sln', '/build', 'Release'])
+
+test.run(program=test.workpath('foo'), stdout="foo.c\n")
+
+
+
+test.pass_test()