Errors test-suite overhaul
Use makefiles instead of a make.sh script Expected results are in individual .stderr files instead of the expected.log file Add errors test-suite to Travis testing and 'make check'
This commit is contained in:
parent
9d003ab362
commit
3055a21505
91 changed files with 298 additions and 519 deletions
51
Examples/test-suite/errors/Makefile.in
Normal file
51
Examples/test-suite/errors/Makefile.in
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
#######################################################################
|
||||
# Makefile for errors test-suite
|
||||
#
|
||||
# This test-suite is for checking SWIG errors and warnings and uses
|
||||
# Python as the target language.
|
||||
#
|
||||
# It compares the stderr output from SWIG to the contents of the .stderr
|
||||
# file for each test case. The test cases are different to those used by
|
||||
# the language module test-suites. The .i files in this directory are
|
||||
# used instead of those in the parent directory.
|
||||
#
|
||||
# When adding a new test case, be sure to commit the expected output
|
||||
# file (.stderr) in addition to the test case itself.
|
||||
#######################################################################
|
||||
|
||||
LANGUAGE = python
|
||||
ERROR_EXT = newerr
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
top_builddir = @top_builddir@
|
||||
|
||||
# All .i files with prefix 'cpp_' will be treated as C++ input and remaining .i files as C input
|
||||
ALL_ERROR_TEST_CASES := $(patsubst %.i,%, $(wildcard *.i))
|
||||
CPP_ERROR_TEST_CASES := $(filter cpp_%, $(ALL_ERROR_TEST_CASES))
|
||||
C_ERROR_TEST_CASES := $(filter-out $(CPP_ERROR_TEST_CASES), $(ALL_ERROR_TEST_CASES))
|
||||
|
||||
ERROR_TEST_CASES := $(CPP_ERROR_TEST_CASES:=.cpptest) \
|
||||
$(C_ERROR_TEST_CASES:=.ctest)
|
||||
|
||||
include $(srcdir)/../common.mk
|
||||
|
||||
|
||||
# Rules for the different types of tests
|
||||
%.cpptest:
|
||||
echo "$(ACTION)ing errors testcase $*"
|
||||
-$(SWIG) -c++ -python -Wall $(SWIGOPT) $*.i 2> $*.$(ERROR_EXT)
|
||||
$(COMPILETOOL) diff $*.stderr $*.newerr
|
||||
|
||||
%.ctest:
|
||||
echo "$(ACTION)ing errors testcase $*"
|
||||
-$(SWIG) -python -Wall $(SWIGOPT) $*.i 2> $*.$(ERROR_EXT)
|
||||
$(COMPILETOOL) diff $*.stderr $*.newerr
|
||||
|
||||
%.clean:
|
||||
|
||||
|
||||
clean:
|
||||
$(MAKE) -f $(top_builddir)/$(EXAMPLES)/Makefile $(LANGUAGE)_clean
|
||||
@rm -f *.newerr *.py
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue