diff options
author | Steven Knight <knight@baldmt.com> | 2008-09-24 12:28:10 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2008-09-24 12:28:10 (GMT) |
commit | 2acc329d8522dbaadece2c61744cf99019747239 (patch) | |
tree | 872054f8841e707d8dda4646463d742f5139fbb2 /test/MSVS/vs-8.0-variant_dir.py | |
parent | af3c530b230be367f9d785598bf85e04f293cadd (diff) | |
download | SCons-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-8.0-variant_dir.py')
-rw-r--r-- | test/MSVS/vs-8.0-variant_dir.py | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/test/MSVS/vs-8.0-variant_dir.py b/test/MSVS/vs-8.0-variant_dir.py new file mode 100644 index 0000000..35f89fd --- /dev/null +++ b/test/MSVS/vs-8.0-variant_dir.py @@ -0,0 +1,88 @@ +#!/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 8.0 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 = ['8.0'] + + + +expected_slnfile = TestSConsMSVS.expected_slnfile_8_0 +expected_vcprojfile = TestSConsMSVS.expected_vcprojfile_8_0 +SConscript_contents = TestSConsMSVS.SConscript_contents_8_0 + + + +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, + '8.0', + None, + 'SConstruct', + project_guid="{FC63FE9E-71B3-06CC-11AF-2077D8108DFE}") +# 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, '8.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() |