*** 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:
parent
8138d780d0
commit
5632f599fe
8 changed files with 88 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,2 +1,7 @@
|
|||
constants
|
||||
csi.c
|
||||
example.scm
|
||||
example_wrap.c
|
||||
my-guile
|
||||
oexample.c
|
||||
precsi.c
|
||||
|
|
|
|||
6
Examples/chicken/multimap/.cvsignore
Normal file
6
Examples/chicken/multimap/.cvsignore
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
csi.c
|
||||
example.scm
|
||||
example_wrap.c
|
||||
multimap
|
||||
oexample.c
|
||||
precsi.c
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1 +1,6 @@
|
|||
csi.c
|
||||
example.scm
|
||||
example_wrap.c
|
||||
oexample.c
|
||||
precsi.c
|
||||
simple
|
||||
|
|
|
|||
4
Examples/test-suite/chicken/.cvsignore
Normal file
4
Examples/test-suite/chicken/.cvsignore
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
*-clos.scm
|
||||
*-generic.scm
|
||||
*_wrap.cxx
|
||||
*_wrap.c
|
||||
44
Examples/test-suite/chicken/Makefile
Normal file
44
Examples/test-suite/chicken/Makefile
Normal 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
|
||||
4
Examples/test-suite/chicken/README
Normal file
4
Examples/test-suite/chicken/README
Normal 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.
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue