4 # Copyright The SCons Foundation
6 # Permission is hereby granted, free of charge, to any person obtaining
7 # a copy of this software and associated documentation files (the
8 # "Software"), to deal in the Software without restriction, including
9 # without limitation the rights to use, copy, modify, merge, publish,
10 # distribute, sublicense, and/or sell copies of the Software, and to
11 # permit persons to whom the Software is furnished to do so, subject to
12 # the following conditions:
14 # The above copyright notice and this permission notice shall be included
15 # in all copies or substantial portions of the Software.
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
18 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
19 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 Verify that SCons realizes the -noproxy option means no .py file will
34 # swig-python expects specific filenames.
35 # the platform specific suffix won't necessarily work.
36 if sys
.platform
== 'win32':
42 test
= TestSCons
.TestSCons()
44 swig
= test
.where_is('swig')
46 test
.skip_test('Can not find installed "swig", skipping test.\n')
48 python
, python_include
, python_libpath
, python_lib
= \
49 test
.get_platform_python_info(python_h_required
=True)
51 # handle testing on other platforms:
54 test
.write('SConstruct', """
55 foo = Environment(CPPPATH=[r'%(python_include)s'],
57 LIBPATH=[r'%(python_libpath)s'],
59 python_interface = foo.Command( 'test_py_swig.i', Value(1), 'echo %%module test_py_swig > test_py_swig.i' )
60 python_c_file = foo.CFile( target='python_swig_test',source=python_interface, SWIGFLAGS = '-python -c++' )
61 java_interface = foo.Command( 'test_java_swig.i', Value(1),'echo %%module test_java_swig > test_java_swig.i' )
62 java_c_file = foo.CFile( target='java_swig_test' ,source=java_interface, SWIGFLAGS = '-java -c++' )
65 expected_stdout
= """\
66 echo %%module test_java_swig > test_java_swig.i
67 %(swig)s -o java_swig_test_wrap.cc -java -c++ test_java_swig.i
68 echo %%module test_py_swig > test_py_swig.i
69 %(swig)s -o python_swig_test_wrap.cc -python -c++ test_py_swig.i
71 test
.run(arguments
='.', stdout
=test
.wrap_stdout(expected_stdout
))
73 # If we mistakenly depend on the .py file that SWIG didn't create
74 # (suppressed by the -noproxy option) then the build won't be up-to-date.
75 test
.up_to_date(arguments
='.')
81 # indent-tabs-mode:nil
83 # vim: set expandtab tabstop=4 shiftwidth=4: