Merge pull request #4655 from bdbaddog/fix_new_ninja_package
[scons.git] / test / SWIG / generated_swigfile.py
blob8d2a2c9ec9b91c56c12dd8e2e55be5ea8f9021fc
1 #!/usr/bin/env python
2 # MIT License
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.
25 """
26 Verify that SCons realizes the -noproxy option means no .py file will
27 be created.
28 """
30 import sys
32 import TestSCons
34 # swig-python expects specific filenames.
35 # the platform specific suffix won't necessarily work.
36 if sys.platform == 'win32':
37 _dll = '.dll'
38 else:
39 _dll = '.so'
42 test = TestSCons.TestSCons()
44 swig = test.where_is('swig')
45 if not 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:
52 ldmodule_prefix = '_'
54 test.write('SConstruct', """
55 foo = Environment(CPPPATH=[r'%(python_include)s'],
56 SWIG=[r'%(swig)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++' )
63 """ % locals())
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
70 """ % locals()
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='.')
77 test.pass_test()
79 # Local Variables:
80 # tab-width:4
81 # indent-tabs-mode:nil
82 # End:
83 # vim: set expandtab tabstop=4 shiftwidth=4: