Added fix for TeX includes with same name as subdirs.
[scons.git] / test / SWIG / generated_swigfile.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 Verify that SCons realizes the -noproxy option means no .py file will
29 be created.
30 """
31
32 import os
33 import sys
34
35 import TestSCons
36
37 # swig-python expects specific filenames.
38 # the platform specific suffix won't necessarily work.
39 if sys.platform == 'win32':
40     _dll = '.dll'
41 else:
42     _dll   = '.so' 
43
44 # swig-python expects specific filenames.
45 # the platform specific suffix won't necessarily work.
46 if sys.platform == 'win32':
47     _dll = '.dll'
48 else:
49     _dll   = '.so' 
50
51 test = TestSCons.TestSCons()
52
53 swig = test.where_is('swig')
54 if not swig:
55     test.skip_test('Can not find installed "swig", skipping test.\n')
56
57 python, python_include, python_libpath, python_lib = \
58              test.get_platform_python_info()
59 Python_h = os.path.join(python_include, 'Python.h')
60 if not os.path.exists(Python_h):
61     test.skip_test('Can not find %s, skipping test.\n' % Python_h)
62
63 # handle testing on other platforms:
64 ldmodule_prefix = '_'
65
66
67 test.write('SConstruct', """
68 foo = Environment(CPPPATH=[r'%(python_include)s'],
69                   SWIG=[r'%(swig)s'],
70                   LIBPATH=[r'%(python_libpath)s'],
71                   )
72 python_interface = foo.Command( 'test_py_swig.i', Value(1), "echo '%%module test_py_swig'  > test_py_swig.i" )
73 python_c_file    = foo.CFile( target='python_swig_test',source=python_interface, SWIGFLAGS = '-python -c++' )
74 java_interface  = foo.Command( 'test_java_swig.i', Value(1),"echo '%%module test_java_swig' > test_java_swig.i" )
75 java_c_file     = foo.CFile( target='java_swig_test'  ,source=java_interface, SWIGFLAGS = '-java -c++' ) 
76
77 """ % locals())
78
79 expected_stdout = """\
80 echo '%%module test_java_swig' > test_java_swig.i
81 %(swig)s -o java_swig_test_wrap.cc -java -c++ test_java_swig.i
82 echo '%%module test_py_swig' > test_py_swig.i
83 %(swig)s -o python_swig_test_wrap.cc -python -c++ test_py_swig.i
84 """ % locals()
85 test.run(arguments = '.',stdout=test.wrap_stdout(expected_stdout))
86
87
88 # If we mistakenly depend on the .py file that SWIG didn't create
89 # (suppressed by the -noproxy option) then the build won't be up-to-date.
90 test.up_to_date(arguments = '.')
91
92 test.pass_test()
93
94 # Local Variables:
95 # tab-width:4
96 # indent-tabs-mode:nil
97 # End:
98 # vim: set expandtab tabstop=4 shiftwidth=4: