git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8697 626c5289-ae23-0410-ae9c-e8d60b6d4f22
111 lines
2.3 KiB
Makefile
111 lines
2.3 KiB
Makefile
#######################################################################
|
|
# $Header$
|
|
# Makefile for python test-suite
|
|
#######################################################################
|
|
|
|
LANGUAGE = python
|
|
ifneq (,$(USE_VALGRIND))
|
|
PYTHON = valgrind --leak-check=full --suppressions=pyswig.supp @PYTHON@
|
|
else
|
|
PYTHON = @PYTHON@
|
|
endif
|
|
SCRIPTSUFFIX = _runme.py
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
top_builddir = @top_builddir@
|
|
|
|
CPP_TEST_CASES += \
|
|
argcargvtest \
|
|
autodoc \
|
|
callback \
|
|
complextest \
|
|
director_stl \
|
|
director_thread \
|
|
director_wstring \
|
|
file_test \
|
|
iadd \
|
|
inout \
|
|
input \
|
|
inplaceadd \
|
|
implicittest \
|
|
kwargs \
|
|
li_cstring \
|
|
li_cwstring \
|
|
li_implicit \
|
|
li_std_vectora \
|
|
li_std_map \
|
|
li_std_set \
|
|
li_std_stream \
|
|
li_std_wstream \
|
|
li_std_wstring \
|
|
nondynamic \
|
|
overload_simple_cast \
|
|
primitive_types \
|
|
std_containers \
|
|
swigobject \
|
|
template_matrix \
|
|
simutry \
|
|
vector
|
|
|
|
|
|
C_TEST_CASES += \
|
|
file_test \
|
|
li_cstring \
|
|
li_cwstring \
|
|
nondynamic
|
|
|
|
#
|
|
# This test only works with modern C compilers
|
|
#
|
|
#C_TEST_CASES += \
|
|
# complextest
|
|
|
|
include $(srcdir)/../common.mk
|
|
|
|
# Overridden variables here
|
|
LIBS = -L.
|
|
|
|
# Rules for the different types of tests
|
|
%.cpptest:
|
|
$(setup) \
|
|
($(swig_and_compile_cpp); ) &&\
|
|
$(run_testcase)
|
|
|
|
%.ctest:
|
|
$(setup) \
|
|
($(swig_and_compile_c); ) &&\
|
|
$(run_testcase)
|
|
|
|
%.multicpptest:
|
|
$(setup) \
|
|
($(swig_and_compile_multi_cpp); ) &&\
|
|
$(run_testcase)
|
|
|
|
# Runs the testcase. A testcase is only run if
|
|
# a file is found which has _runme.py appended after the testcase name.
|
|
run_testcase = \
|
|
if [ -f $(srcdir)/$(SCRIPTPREFIX)$*$(SCRIPTSUFFIX) ]; then ( \
|
|
env LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH PYTHONPATH=$(srcdir):$$PYTHONPATH $(PYTHON) $(srcdir)/$(SCRIPTPREFIX)$*$(SCRIPTSUFFIX);) \
|
|
fi;
|
|
|
|
# Clean: remove the generated .py file
|
|
%.clean:
|
|
@rm -f $*.py;
|
|
|
|
clean:
|
|
$(MAKE) -f $(top_builddir)/$(EXAMPLES)/Makefile python_clean
|
|
|
|
cvsignore:
|
|
@echo '*wrap* *.pyc *.so *.dll *.exp *.lib'
|
|
@echo Makefile
|
|
@for i in ${CPP_TEST_CASES} ${C_TEST_CASES}; do echo $$i.py; done
|
|
@for i in ${CPP_TEST_CASES} ${C_TEST_CASES}; do if grep -q $${i}_runme.py CVS/Entries ; then echo $${i}_runme.py; fi; done
|
|
@echo clientdata_prop_a.py
|
|
@echo clientdata_prop_b.py
|
|
@echo imports_a.py
|
|
@echo imports_b.py
|
|
@echo mod_a.py
|
|
@echo mod_b.py
|
|
@echo template_typedef_import.py
|
|
|
|
|