1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
#!/usr/bin/env python
#
# __COPYRIGHT__
#
# 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.
#
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
"""
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_javah = test.java_where_javah()
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:
|