Added fix for TeX includes with same name as subdirs.
[scons.git] / test / redirection.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 TestSCons
28
29 _python_ = TestSCons._python_
30
31 test = TestSCons.TestSCons()
32
33 test.write('cat.py', r"""
34 import sys
35 try:
36     input = open(sys.argv[1], 'r').read()
37 except IndexError:
38     input = sys.stdin.read()
39 sys.stdout.write(input)
40 sys.exit(0)
41 """)
42
43 test.write('SConstruct', r"""
44 env = Environment()
45 env.Command(target='foo1', source='bar1',
46             action= '%(_python_)s cat.py $SOURCES > $TARGET')
47 env.Command(target='foo2', source='bar2',
48             action= '%(_python_)s cat.py < $SOURCES > $TARGET')
49 env.Command(target='foo3', source='bar3',
50             action='%(_python_)s cat.py $SOURCES | %(_python_)s cat.py > $TARGET')
51 env.Command(target='foo4', source='bar4',
52             action='%(_python_)s cat.py <$SOURCES |%(_python_)s cat.py >$TARGET')
53 """ % locals())
54
55 test.write('bar1', 'bar1\r\n')
56 test.write('bar2', 'bar2\r\n')
57 test.write('bar3', 'bar3\r\n')
58 test.write('bar4', 'bar4\r\n')
59
60 test.run(arguments='.')
61
62 test.fail_test(test.read('foo1') != 'bar1\r\n')
63 test.fail_test(test.read('foo2') != 'bar2\r\n')
64 test.fail_test(test.read('foo3') != 'bar3\r\n')
65 test.fail_test(test.read('foo4') != 'bar4\r\n')
66
67 test.pass_test()
68
69 # Local Variables:
70 # tab-width:4
71 # indent-tabs-mode:nil
72 # End:
73 # vim: set expandtab tabstop=4 shiftwidth=4: