[ci skip] update generated files
[scons.git] / test / MSVS / vs-7.1-clean.py
blob403463e0bbb7e472711830d83be40e1c8e1c4bbb
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 Verify the -c option's ability to clean generated Visual Studio 7.1
29 project (.vcproj) and solution (.sln) files.
30 """
32 import TestSConsMSVS
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.1']
40 expected_slnfile = TestSConsMSVS.expected_slnfile_7_1
41 expected_vcprojfile = TestSConsMSVS.expected_vcprojfile_7_1
43 test.write('SConstruct', """\
44 env=Environment(tools=['msvs'],
45 MSVS_VERSION='7.1',
46 HOST_ARCH='%(HOST_ARCH)s')
48 testsrc = ['test1.cpp', 'test2.cpp']
49 testincs = ['sdk.h']
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',
56 srcs = testsrc,
57 incs = testincs,
58 localincs = testlocalincs,
59 resources = testresources,
60 misc = testmisc,
61 buildtarget = 'Test.exe',
62 variant = 'Release',
63 auto_build_solution = 0)
65 env.MSVSSolution(target = 'Test.sln',
66 slnguid = '{SLNGUID}',
67 projects = [p],
68 variant = 'Release')
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.1', 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.1', 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')
97 test.must_not_exist(test.workpath('Test.vcproj'))
98 test.must_exist(test.workpath('Test.sln'))
100 test.run(arguments='.')
102 test.must_exist(test.workpath('Test.vcproj'))
103 test.must_exist(test.workpath('Test.sln'))
105 test.run(arguments='-c Test.sln')
107 test.must_not_exist(test.workpath('Test.vcproj'))
108 test.must_not_exist(test.workpath('Test.sln'))
110 test.pass_test()
112 # Local Variables:
113 # tab-width:4
114 # indent-tabs-mode:nil
115 # End:
116 # vim: set expandtab tabstop=4 shiftwidth=4: