summaryrefslogtreecommitdiffstats
path: root/test/MSVS/vs-7.1-variant_dir.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-09-24 12:28:10 (GMT)
committerSteven Knight <knight@baldmt.com>2008-09-24 12:28:10 (GMT)
commit2acc329d8522dbaadece2c61744cf99019747239 (patch)
tree872054f8841e707d8dda4646463d742f5139fbb2 /test/MSVS/vs-7.1-variant_dir.py
parentaf3c530b230be367f9d785598bf85e04f293cadd (diff)
downloadSCons-2acc329d8522dbaadece2c61744cf99019747239.zip
SCons-2acc329d8522dbaadece2c61744cf99019747239.tar.gz
SCons-2acc329d8522dbaadece2c61744cf99019747239.tar.bz2
Split the MSVS variant_dir sub-tests into separate test scripts.
Diffstat (limited to 'test/MSVS/vs-7.1-variant_dir.py')
-rw-r--r--test/MSVS/vs-7.1-variant_dir.py84
1 files changed, 84 insertions, 0 deletions
diff --git a/test/MSVS/vs-7.1-variant_dir.py b/test/MSVS/vs-7.1-variant_dir.py
new file mode 100644
index 0000000..f0b6ffb
--- /dev/null
+++ b/test/MSVS/vs-7.1-variant_dir.py
@@ -0,0 +1,84 @@
+#!/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 generate Visual Studio 7.1 project (.vcproj) and
+solution (.sln) files that look correct when using a variant_dir.
+"""
+
+import TestSConsMSVS
+
+test = TestSConsMSVS.TestSConsMSVS()
+
+# Make the test infrastructure think we have this version of MSVS installed.
+test._msvs_versions = ['7.1']
+
+
+
+expected_slnfile = TestSConsMSVS.expected_slnfile_7_1
+expected_vcprojfile = TestSConsMSVS.expected_vcprojfile_7_1
+SConscript_contents = TestSConsMSVS.SConscript_contents_7_1
+
+
+
+test.subdir('src')
+
+test.write('SConstruct', """\
+SConscript('src/SConscript', variant_dir='build')
+""")
+
+test.write(['src', 'SConscript'], SConscript_contents)
+
+test.run(arguments=".")
+
+vcproj = test.read(['src', 'Test.vcproj'], 'r')
+expect = test.msvs_substitute(expected_vcprojfile, '7.0', None, 'SConstruct')
+# don't compare the pickled data
+assert vcproj[:len(expect)] == expect, test.diff_substr(expect, vcproj)
+
+test.must_exist(test.workpath('src', 'Test.sln'))
+sln = test.read(['src', 'Test.sln'], 'r')
+expect = test.msvs_substitute(expected_slnfile, '7.0', 'src')
+# don't compare the pickled data
+assert sln[:len(expect)] == expect, test.diff_substr(expect, sln)
+
+test.must_match(['build', 'Test.vcproj'], """\
+This is just a placeholder file.
+The real project file is here:
+%s
+""" % test.workpath('src', 'Test.vcproj'),
+ mode='r')
+
+test.must_match(['build', 'Test.sln'], """\
+This is just a placeholder file.
+The real workspace file is here:
+%s
+""" % test.workpath('src', 'Test.sln'),
+ mode='r')
+
+
+
+test.pass_test()