*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4938 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Matthias Köppe 2003-07-01 16:47:55 +00:00
commit 5632f599fe
8 changed files with 88 additions and 6 deletions

View file

@ -1,9 +1,16 @@
*_wrap.c
*_wrap.cxx
*.dll
*.dsw
*.ncb
*.opt
*.plg
Release
*_wrap.c
*_wrap.cxx
Debug
Release
class
csi.c
example-clos.scm
example-generic.scm
example.scm
oexample.c
precsi.c

View file

@ -1,2 +1,7 @@
constants
csi.c
example.scm
example_wrap.c
my-guile
oexample.c
precsi.c

View file

@ -0,0 +1,6 @@
csi.c
example.scm
example_wrap.c
multimap
oexample.c
precsi.c

View file

@ -1,9 +1,16 @@
*_wrap.c
*_wrap.cxx
*.dll
*.dsw
*.ncb
*.opt
*.plg
Release
*_wrap.c
*_wrap.cxx
Debug
Release
csi.c
example-clos.scm
example-generic.scm
example.scm
oexample.c
overload
precsi.c

View file

@ -1 +1,6 @@
csi.c
example.scm
example_wrap.c
oexample.c
precsi.c
simple

View file

@ -0,0 +1,4 @@
*-clos.scm
*-generic.scm
*_wrap.cxx
*_wrap.c

View file

@ -0,0 +1,44 @@
#######################################################################
# $Header$
# Makefile for chicken test-suite
#######################################################################
LANGUAGE = chicken
VARIANT =
SCRIPTSUFFIX = _runme.scm
#C_TEST_CASES = long_long list_vector pointer_in_out multivalue
include ../common.mk
# Overridden variables here
# 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.scm appended after the testcase name.
run_testcase = \
if [ -f $*\_runme.scm ]; then ( \
env LD_LIBRARY_PATH=$(DYNAMIC_LIB_PATH):$$LD_LIBRARY_PATH ./$* $*\_runme.scm;) \
fi;
# Clean
%.clean:
clean:
$(MAKE) -f $(TOP)/Makefile chicken_clean

View file

@ -0,0 +1,4 @@
See ../README for common README file.
Any testcases which have _runme.scm appended after the testcase name will be detected and run.