*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4861 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Matthias Köppe 2003-06-04 17:50:26 +00:00
commit f0ef13929d
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,2 @@
*wrap*
*-guile

View file

@ -0,0 +1,24 @@
#######################################################################
# $Header$
# Makefile for guile test-suite (with SCM API)
#######################################################################
include ../guile/Makefile
VARIANT = _scm
# Refer to the guile directory for the run scripts
SCRIPTPREFIX = ../guile/
# 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 $(SCRIPTPREFIX)$*$(SCRIPTSUFFIX) ]; then ( \
env LD_LIBRARY_PATH=$(DYNAMIC_LIB_PATH):$$LD_LIBRARY_PATH guile -l $(SCRIPTPREFIX)$*$(SCRIPTSUFFIX);) \
fi;
setup = \
@if [ -f $(SCRIPTPREFIX)$*$(SCRIPTSUFFIX) ]; then \
echo "Checking testcase $* (with run test) under $(LANGUAGE) (with SCM API)" ; \
else \
echo "Checking testcase $* under $(LANGUAGE) (with SCM API)" ; \
fi;