mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-12 16:50:23 +01:00
157 lines
3.9 KiB
Python
157 lines
3.9 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# MIT License
|
|
#
|
|
# Copyright The SCons Foundation
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
# a copy of this software and associated documentation files (the
|
|
# "Software"), to deal in the Software without restriction, including
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
# the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included
|
|
# in all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
|
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
"""
|
|
Verify that dependencies on SWIG-generated .java files work correctly.
|
|
|
|
Test case courtesy Jonathan (toolshed@tigris.org).
|
|
"""
|
|
|
|
import TestSCons
|
|
|
|
test = TestSCons.TestSCons()
|
|
|
|
swig = test.where_is('swig')
|
|
if not swig:
|
|
test.skip_test('Can not find installed "swig", skipping test.\n')
|
|
|
|
where_javac, java_version = test.java_where_javac()
|
|
where_java_include=test.java_where_includes()
|
|
|
|
test.subdir(['foo'],
|
|
['java'],
|
|
['java', 'build'])
|
|
|
|
test.write(['SConstruct'], """\
|
|
import os
|
|
|
|
env = Environment(ENV=os.environ)
|
|
if env['PLATFORM'] != 'win32':
|
|
env.Append(CPPFLAGS=' -g -Wall')
|
|
env['CPPPATH'] = '$JAVAINCLUDES'
|
|
|
|
Export('env')
|
|
|
|
SConscript('#foo/SConscript')
|
|
SConscript('#java/SConscript')
|
|
""" % locals())
|
|
|
|
test.write(['foo', 'SConscript'], """\
|
|
Import('env')
|
|
|
|
env.SharedLibrary('foo', 'foo.cpp')
|
|
""")
|
|
|
|
test.write(['foo', 'foo.cpp'], """\
|
|
#include "foo.h"
|
|
|
|
int fooAdd(int a, int b) {
|
|
return a + b;
|
|
}
|
|
""")
|
|
|
|
test.write(['foo', 'foo.h'], """\
|
|
#ifdef _MSC_VER
|
|
__declspec(dllexport)
|
|
#endif
|
|
int fooAdd(int, int);
|
|
""")
|
|
|
|
test.write(['java', 'Java_foo_interface.i'], """\
|
|
#include "foo.h"
|
|
|
|
#include <windows.i>
|
|
|
|
%module foopack
|
|
|
|
%{
|
|
|
|
#ifdef _MSC_VER
|
|
__declspec(dllexport)
|
|
#endif
|
|
int hello(){
|
|
return 1;
|
|
}
|
|
%}
|
|
""")
|
|
|
|
test.write(['java', 'SConscript'], """\
|
|
import os
|
|
|
|
Import('env')
|
|
|
|
# unnecessary?
|
|
env = env.Clone()
|
|
|
|
env.Prepend(CPPPATH = ['#foo',])
|
|
|
|
libadd = ['foo',]
|
|
|
|
libpath = ['#foo',]
|
|
|
|
#swigflags = '-c++ -java -Wall -package foopack -Ifoo'
|
|
swigflags = '-c++ -java -Wall -Ifoo -DTEST_$PLATFORM'
|
|
|
|
Java_foo_interface = env.SharedLibrary(
|
|
'Java_foo_interface',
|
|
'Java_foo_interface.i',
|
|
LIBS = libadd,
|
|
LIBPATH = libpath,
|
|
SWIGFLAGS = swigflags,
|
|
SWIGOUTDIR = Dir('build'),
|
|
SWIGCXXFILESUFFIX = "_wrap.cpp")
|
|
|
|
foopack_jar_javac = env.Java('classes', 'build')
|
|
|
|
env['JARCHDIR'] = 'java/classes'
|
|
foopack_jar = env.Jar(target = 'foopack.jar', source = 'classes')
|
|
""")
|
|
|
|
# Disable looking at stderr because some combinations of SWIG/gcc
|
|
# generate a warning about the sWIG_JavaThrowException() function
|
|
# being defined but not used.
|
|
try:
|
|
test.run(arguments = '.', stderr=None)
|
|
except:
|
|
# catch exception which is causing failure for issue not related to java.
|
|
# Bug ticket reported also this seems work fine when running outsite
|
|
# the test framework
|
|
test.skip_test('Throwing no result for this test because of bug ' +
|
|
'related here: https://github.com/SCons/scons/issues/2907\n')
|
|
#test.must_exist(['java', 'classes', 'foopack', 'foopack.class'])
|
|
#test.must_exist(['java', 'classes', 'foopack', 'foopackJNI.class'])
|
|
test.must_exist(['java', 'classes', 'foopack.class'])
|
|
test.must_exist(['java', 'classes', 'foopackJNI.class'])
|
|
|
|
test.up_to_date(arguments = '.')
|
|
|
|
test.pass_test()
|
|
|
|
# Local Variables:
|
|
# tab-width:4
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=4 shiftwidth=4:
|