Expanded SCons.Scanner.LaTeX.comment_re to not break on \%
[scons.git] / test / SConscript / SConscriptChdir.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 test = TestSCons.TestSCons()
30
31 test.subdir('dir1', 'dir2', 'dir3', 'dir4', 'dir5')
32
33 test.write('SConstruct', """
34 env = Environment()
35 SConscript('dir1/SConscript')
36 SConscriptChdir(1)
37 SConscript('dir2/SConscript')
38 SConscriptChdir(0)
39 SConscript('dir3/SConscript')
40 env.SConscriptChdir(1)
41 SConscript('dir4/SConscript')
42 env.SConscriptChdir(0)
43 SConscript('dir5/SConscript')
44 """)
45
46 test.write(['dir1', 'SConscript'], """
47 exec(open("create_test.py", 'rU').read())
48 """)
49
50 test.write(['dir2', 'SConscript'], """
51 exec(open("create_test.py", 'rU').read())
52 """)
53
54 test.write(['dir3', 'SConscript'], """
55 import os.path
56 name = os.path.join('dir3', 'create_test.py')
57 exec(open(name, 'rU').read())
58 """)
59
60 test.write(['dir4', 'SConscript'], """
61 exec(open("create_test.py", 'rU').read())
62 """)
63
64 test.write(['dir5', 'SConscript'], """
65 import os.path
66 name = os.path.join('dir5', 'create_test.py')
67 exec(open(name, 'rU').read())
68 """)
69
70 for dir in ['dir1', 'dir2', 'dir3','dir4', 'dir5']:
71     test.write([dir, 'create_test.py'], r"""
72 f = open("test.txt", "ab")
73 f.write("This is the %s test.\n")
74 f.close()
75 """ % dir)
76
77 test.run(arguments=".", stderr=None)
78
79 test.fail_test(test.read(['dir1', 'test.txt']) != "This is the dir1 test.\n")
80 test.fail_test(test.read(['dir2', 'test.txt']) != "This is the dir2 test.\n")
81 test.fail_test(test.read('test.txt') != "This is the dir3 test.\nThis is the dir5 test.\n")
82 test.fail_test(test.read(['dir4', 'test.txt']) != "This is the dir4 test.\n")
83
84 test.pass_test()
85
86 # Local Variables:
87 # tab-width:4
88 # indent-tabs-mode:nil
89 # End:
90 # vim: set expandtab tabstop=4 shiftwidth=4: