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 Verify the -c option's ability to clean generated Visual Studio 7.0
29 project (.vcproj) and solution (.sln) files.
34 test
= TestSConsMSVS
.TestSConsMSVS()
35 host_arch
= test
.get_vs_host_arch()
37 # Make the test infrastructure think we have this version of MSVS installed.
38 test
._msvs
_versions
= ['7.0']
40 expected_slnfile
= TestSConsMSVS
.expected_slnfile_7_0
41 expected_vcprojfile
= TestSConsMSVS
.expected_vcprojfile_7_0
43 test
.write('SConstruct', """\
44 env=Environment(tools=['msvs'],
46 HOST_ARCH='%(HOST_ARCH)s')
48 testsrc = ['test1.cpp', 'test2.cpp']
50 testlocalincs = ['test.h']
51 testresources = ['test.rc']
52 testmisc = ['readme.txt']
54 p = env.MSVSProject(target = 'Test.vcproj',
55 MSVS_PROJECT_GUID='%(PROJECT_GUID)s',
58 localincs = testlocalincs,
59 resources = testresources,
61 buildtarget = 'Test.exe',
63 auto_build_solution = 0)
65 env.MSVSSolution(target = 'Test.sln',
66 slnguid = '{SLNGUID}',
69 """ % {'HOST_ARCH':host_arch
, 'PROJECT_GUID': TestSConsMSVS
.PROJECT_GUID
})
71 test
.run(arguments
=".")
73 test
.must_exist(test
.workpath('Test.vcproj'))
74 vcproj
= test
.read('Test.vcproj', 'r')
75 expect
= test
.msvs_substitute(expected_vcprojfile
, '7.0', None, 'SConstruct')
76 # don't compare the pickled data
77 assert vcproj
[:len(expect
)] == expect
, test
.diff_substr(expect
, vcproj
)
79 test
.must_exist(test
.workpath('Test.sln'))
80 sln
= test
.read('Test.sln', 'r')
81 expect
= test
.msvs_substitute(expected_slnfile
, '7.0', None, 'SConstruct')
82 # don't compare the pickled data
83 assert sln
[:len(expect
)] == expect
, test
.diff_substr(expect
, sln
)
85 test
.run(arguments
='-c .')
87 test
.must_not_exist(test
.workpath('Test.vcproj'))
88 test
.must_not_exist(test
.workpath('Test.sln'))
90 test
.run(arguments
='.')
92 test
.must_exist(test
.workpath('Test.vcproj'))
93 test
.must_exist(test
.workpath('Test.sln'))
95 test
.run(arguments
='-c Test.vcproj')
96 test
.must_not_exist(test
.workpath('Test.vcproj'))
97 test
.must_exist(test
.workpath('Test.sln'))
99 test
.run(arguments
='-c Test.sln')
101 test
.must_not_exist(test
.workpath('Test.sln'))
107 # indent-tabs-mode:nil
109 # vim: set expandtab tabstop=4 shiftwidth=4: