Added fix for TeX includes with same name as subdirs.
[scons.git] / test / option-f.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 test = TestSCons.TestSCons()
32
33 test.subdir('subdir')
34
35 subdir_BuildThis = os.path.join('subdir', 'Buildthis')
36
37 test.write('SConscript', """
38 import os
39 print "SConscript " + os.getcwd()
40 """)
41
42 test.write(subdir_BuildThis, """
43 import os
44 print "subdir/BuildThis", os.getcwd()
45 """)
46
47 test.write('Build2', """
48 import os
49 print "Build2", os.getcwd()
50 """)
51
52 wpath = test.workpath()
53
54 test.run(arguments = '-f SConscript .',
55          stdout = test.wrap_stdout(read_str = 'SConscript %s\n' % wpath,
56                                    build_str = "scons: `.' is up to date.\n"))
57
58 test.run(arguments = '-f %s .' % subdir_BuildThis,
59          stdout = test.wrap_stdout(read_str = 'subdir/BuildThis %s\n' % wpath,
60                                    build_str = "scons: `.' is up to date.\n"))
61
62 test.run(arguments = '--file=SConscript .',
63          stdout = test.wrap_stdout(read_str = 'SConscript %s\n' % wpath,
64                                    build_str = "scons: `.' is up to date.\n"))
65
66 test.run(arguments = '--file=%s .' % subdir_BuildThis,
67          stdout = test.wrap_stdout(read_str = 'subdir/BuildThis %s\n' % wpath,
68                                    build_str = "scons: `.' is up to date.\n"))
69
70 test.run(arguments = '--makefile=SConscript .',
71          stdout = test.wrap_stdout(read_str = 'SConscript %s\n' % wpath,
72                                    build_str = "scons: `.' is up to date.\n"))
73
74 test.run(arguments = '--makefile=%s .' % subdir_BuildThis,
75          stdout = test.wrap_stdout(read_str = 'subdir/BuildThis %s\n' % wpath,
76                                    build_str = "scons: `.' is up to date.\n"))
77
78 test.run(arguments = '--sconstruct=SConscript .',
79          stdout = test.wrap_stdout(read_str = 'SConscript %s\n' % wpath,
80                                    build_str = "scons: `.' is up to date.\n"))
81
82 test.run(arguments = '--sconstruct=%s .' % subdir_BuildThis,
83          stdout = test.wrap_stdout(read_str = 'subdir/BuildThis %s\n' % wpath,
84                                    build_str = "scons: `.' is up to date.\n"))
85
86 test.run(arguments = '-f - .', stdin = """
87 import os
88 print "STDIN " + os.getcwd()
89 """,
90          stdout = test.wrap_stdout(read_str = 'STDIN %s\n' % wpath,
91                                    build_str = "scons: `.' is up to date.\n"))
92
93 expect = test.wrap_stdout(read_str = 'Build2 %s\nSConscript %s\n' % (wpath, wpath),
94                           build_str = "scons: `.' is up to date.\n")
95 test.run(arguments = '-f Build2 -f SConscript .', stdout=expect)
96
97 test.run(arguments = '-f no_such_file .',
98          stdout = test.wrap_stdout("scons: `.' is up to date.\n"),
99          stderr = None)
100 test.fail_test(not test.match_re(test.stderr(), """
101 scons: warning: Ignoring missing SConscript 'no_such_file'
102 """ + TestSCons.file_expr))
103
104 test.pass_test()
105
106 # Local Variables:
107 # tab-width:4
108 # indent-tabs-mode:nil
109 # End:
110 # vim: set expandtab tabstop=4 shiftwidth=4: