Added fix for TeX includes with same name as subdirs.
[scons.git] / test / CFILESUFFIX.py
1 #!/usr/bin/env python
2 #
3 # __COPYRIGHT__
4 #
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:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
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.
23 #
24
25 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
26
27 """
28 Verify that we can set CFILESUFFIX to arbitrary values.
29 """
30
31 import os
32
33 import TestSCons
34
35 _python_ = TestSCons._python_
36
37 test = TestSCons.TestSCons()
38
39 test.write('mylex.py', """
40 import getopt
41 import sys
42 cmd_opts, args = getopt.getopt(sys.argv[1:], 't', [])
43 for a in args:
44     contents = open(a, 'rb').read()
45     sys.stdout.write(contents.replace('LEX', 'mylex.py'))
46 sys.exit(0)
47 """)
48
49 test.write('SConstruct', """
50 env = Environment(LEX = r'%(_python_)s mylex.py', tools = ['lex'])
51 env.CFile(target = 'foo', source = 'foo.l')
52 env.Clone(CFILESUFFIX = '.xyz').CFile(target = 'bar', source = 'bar.l')
53
54 # Make sure that calling a Tool on a construction environment *after*
55 # we've set CFILESUFFIX doesn't overwrite the value.
56 env2 = Environment(tools = [], CFILESUFFIX = '.env2')
57 env2.Tool('lex')
58 env2['LEX'] = r'%(_python_)s mylex.py'
59 env2.CFile(target = 'f3', source = 'f3.l')
60 """ % locals())
61
62 input = r"""
63 int
64 main(int argc, char *argv[])
65 {
66         argv[argc++] = "--";
67         printf("LEX\n");
68         printf("%s\n");
69         exit (0);
70 }
71 """
72
73 test.write('foo.l', input % 'foo.l')
74
75 test.write('bar.l', input % 'bar.l')
76
77 test.write('f3.l', input % 'f3.l')
78
79 test.run(arguments = '.')
80
81 test.must_exist(test.workpath('foo.c'))
82
83 test.must_exist(test.workpath('bar.xyz'))
84
85 test.must_exist(test.workpath('f3.env2'))
86
87 test.pass_test()
88
89 # Local Variables:
90 # tab-width:4
91 # indent-tabs-mode:nil
92 # End:
93 # vim: set expandtab tabstop=4 shiftwidth=4: