Move 2.0 changes collected in branches/pending back to trunk for further
[scons.git] / test / LEX / LEXFLAGS.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 import os
28
29 import TestSCons
30
31 _python_ = TestSCons._python_
32 _exe   = TestSCons._exe
33
34 test = TestSCons.TestSCons()
35
36 test.subdir('in')
37
38
39
40 test.write('mylex.py', """
41 import getopt
42 import sys
43 cmd_opts, args = getopt.getopt(sys.argv[1:], 'I:tx', [])
44 opt_string = ''
45 i_arguments = ''
46 for opt, arg in cmd_opts:
47     if opt == '-I': i_arguments = i_arguments + ' ' + arg
48     else: opt_string = opt_string + ' ' + opt
49 for a in args:
50     contents = open(a, 'rb').read()
51     contents = contents.replace('LEXFLAGS', opt_string)
52     contents = contents.replace('I_ARGS', i_arguments)
53     sys.stdout.write(contents)
54 sys.exit(0)
55 """)
56
57 test.write('SConstruct', """
58 env = Environment(LEX = r'%(_python_)s mylex.py',
59                   LEXFLAGS = '-x -I${TARGET.dir} -I${SOURCE.dir}',
60                   tools=['default', 'lex'])
61 env.CFile(target = 'out/aaa', source = 'in/aaa.l')
62 """ % locals())
63
64 test.write(['in', 'aaa.l'],             "aaa.l\nLEXFLAGS\nI_ARGS\n")
65
66 test.run('.', stderr = None)
67
68 # Read in with mode='r' because mylex.py implicitley wrote to stdout
69 # with mode='w'.
70 test.must_match(['out', 'aaa.c'],       "aaa.l\n -x -t\n out in\n", mode='r')
71
72
73
74 test.pass_test()
75
76 # Local Variables:
77 # tab-width:4
78 # indent-tabs-mode:nil
79 # End:
80 # vim: set expandtab tabstop=4 shiftwidth=4: