* interfaces: Remove unnecessary interfaces for concrete classes cosmetic code formatting changes Correct interface name attributes that are internal interface macro changes to support templates Test non-virtual method in Derived classes interface tests for a most derived class inheriting the interfaces further up the chain Rename GetCPtr/getCPtr to SWIGInterfaceUpcast interface feature support for const ref pointers (used by the STL) Interface feature support for arrays More interface feature testing for return values interface feature support for passing by value interface feature support for references Multiple inheritance parameters as pointers testing Simplify multiple_inheritance_abstract Java runtime test Warning fixes Rename test functions in multiple_inheritance_abstract testcase Formatting fixes in generated code for interface feature Cosmetic spacing changes in test case interface feature typemap corrections to handle NULL pointers interface test added javadirectorin fix interface implementation visibility interface inheritance (2) interface inheritance (1) feature:interface ported to Java propagate non-abstract "interface" base methods (3) propagate non-abstract "interface" base methods (2) propagate non-abstract "interface" base methods (1) namespace support added GetCPtr now returns HandleRef "feature:interface:name" is now mandatory attribute interfaces (1) interfaces (1) Conflicts: Source/Modules/csharp.cxx Source/Modules/java.cxx
108 lines
3.2 KiB
Makefile
108 lines
3.2 KiB
Makefile
#######################################################################
|
|
# Makefile for java test-suite
|
|
#######################################################################
|
|
|
|
LANGUAGE = java
|
|
JAVA = @JAVA@
|
|
JAVAC = @JAVAC@
|
|
JAVAFLAGS = -Xcheck:jni
|
|
SCRIPTSUFFIX = _runme.java
|
|
|
|
srcdir = @srcdir@
|
|
top_srcdir = ../@top_srcdir@
|
|
top_builddir = ../@top_builddir@
|
|
|
|
C_TEST_CASES = \
|
|
java_lib_arrays \
|
|
java_lib_various
|
|
|
|
CPP_TEST_CASES = \
|
|
enum_thorough_proper \
|
|
enum_thorough_simple \
|
|
enum_thorough_typeunsafe \
|
|
exception_partial_info \
|
|
intermediary_classname \
|
|
java_constants \
|
|
java_director \
|
|
java_director_assumeoverride \
|
|
java_director_exception_feature \
|
|
java_director_exception_feature_nspace \
|
|
java_director_ptrclass \
|
|
java_enums \
|
|
java_jnitypes \
|
|
java_lib_arrays_dimensionless \
|
|
java_lib_various \
|
|
java_nspacewithoutpackage \
|
|
java_pgcpp \
|
|
java_pragmas \
|
|
java_prepost \
|
|
java_throws \
|
|
java_typemaps_proxy \
|
|
java_typemaps_typewrapper \
|
|
multiple_inheritance_abstract
|
|
# li_boost_intrusive_ptr
|
|
|
|
CPP11_TEST_CASES = \
|
|
cpp11_strongly_typed_enumerations_simple \
|
|
|
|
include $(srcdir)/../common.mk
|
|
|
|
# Overridden variables here
|
|
SRCDIR = ../$(srcdir)/
|
|
JAVA_PACKAGE = $*
|
|
JAVA_PACKAGEOPT = -package $(JAVA_PACKAGE)
|
|
SWIGOPT += $(JAVA_PACKAGEOPT)
|
|
|
|
# Custom tests - tests with additional commandline options
|
|
java_nspacewithoutpackage.%: JAVA_PACKAGEOPT =
|
|
java_director_exception_feature_nspace.%: JAVA_PACKAGE = $*Package
|
|
nspace.%: JAVA_PACKAGE = $*Package
|
|
nspace_extend.%: JAVA_PACKAGE = $*Package
|
|
director_nspace.%: JAVA_PACKAGE = $*Package
|
|
director_nspace_director_name_collision.%: JAVA_PACKAGE = $*Package
|
|
|
|
# Rules for the different types of tests
|
|
%.cpptest:
|
|
$(setup)
|
|
+(cd $(JAVA_PACKAGE) && $(swig_and_compile_cpp))
|
|
$(run_testcase)
|
|
|
|
%.ctest:
|
|
$(setup)
|
|
+(cd $(JAVA_PACKAGE) && $(swig_and_compile_c))
|
|
$(run_testcase)
|
|
|
|
%.multicpptest:
|
|
$(setup)
|
|
+(cd $(JAVA_PACKAGE) && $(swig_and_compile_multi_cpp))
|
|
$(run_testcase)
|
|
|
|
# Makes a directory for the testcase if it does not exist
|
|
setup = \
|
|
if [ -f $(SCRIPTDIR)/$(SCRIPTPREFIX)$*$(SCRIPTSUFFIX) ]; then \
|
|
echo "$(ACTION)ing $(LANGUAGE) testcase $* (with run test)" ; \
|
|
else \
|
|
echo "$(ACTION)ing $(LANGUAGE) testcase $*" ; \
|
|
fi; \
|
|
if [ ! -d $(JAVA_PACKAGE) ]; then \
|
|
mkdir $(JAVA_PACKAGE); \
|
|
fi
|
|
|
|
# Compiles java files then runs the testcase. A testcase is only run if
|
|
# a file is found which has _runme.java appended after the testcase name.
|
|
# Note Java uses LD_LIBRARY_PATH under Unix, PATH under Cygwin/Windows, SHLIB_PATH on HPUX and DYLD_LIBRARY_PATH on Mac OS X.
|
|
run_testcase = \
|
|
cd $(JAVA_PACKAGE) && $(COMPILETOOL) $(JAVAC) -classpath . `find . -name "*.java"` && cd .. && \
|
|
if [ -f $(SCRIPTDIR)/$(SCRIPTPREFIX)$*$(SCRIPTSUFFIX) ]; then \
|
|
$(COMPILETOOL) $(JAVAC) -classpath . -d . $(SCRIPTDIR)/$(SCRIPTPREFIX)$*$(SCRIPTSUFFIX) && \
|
|
env LD_LIBRARY_PATH="$(JAVA_PACKAGE):$$LD_LIBRARY_PATH" PATH="$(JAVA_PACKAGE):$$PATH" SHLIB_PATH="$(JAVA_PACKAGE):$$SHLIB_PATH" DYLD_LIBRARY_PATH="$(JAVA_PACKAGE):$$DYLD_LIBRARY_PATH" $(RUNTOOL) $(JAVA) $(JAVAFLAGS) -classpath . $*_runme; \
|
|
fi
|
|
|
|
# Clean: remove testcase directories
|
|
%.clean:
|
|
@if [ -d $(JAVA_PACKAGE) ]; then \
|
|
rm -rf $(JAVA_PACKAGE); \
|
|
fi
|
|
|
|
clean:
|
|
@rm -f *.class hs_err*.log
|