Initialized merge tracking via "svnmerge" with revisions "1-4644" from
[scons.git] / test / TEX / dup_names.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 Test whether duplicate base names are handled correctly. Basically there 
29 is a directory and a file in the same location with the same basename 
30 (foo/ and foo.tex). This test verifies \include{foo} includes foo.tex 
31 and not the directory.
32
33 Test configuration courtesy Lennart Sauerbeck.
34 """
35
36 import TestSCons
37
38 test = TestSCons.TestSCons()
39
40 pdflatex = test.where_is('pdflatex')
41
42 if not pdflatex:
43     test.skip_test("Could not find pdflatex; skipping test(s).\n")
44
45 test.subdir(['foo'])
46
47 test.write('SConstruct', """\
48 import os
49 env = Environment(tools = ['pdflatex'],
50                   ENV = {'PATH' : os.environ['PATH']})
51 pdf = env.PDF( "base.ltx" )
52 """)
53
54 test.write('base.ltx', r"""
55 \documentclass{article}
56
57 \begin{document}
58 \input{foo}
59 \end{document}
60 """)
61
62 test.write('foo.tex', r"""
63 Yes, this is a valid document.
64 """)
65
66 test.run(arguments = '.', stderr=None)
67
68 test.must_exist(test.workpath('base.aux'))
69
70 test.pass_test()
71
72 # Local Variables:
73 # tab-width:4
74 # indent-tabs-mode:nil
75 # End:
76 # vim: set expandtab tabstop=4 shiftwidth=4: