Suppress warnings about no typemaps being defined in C test suite
In many (although perhaps not all, so don't suppress this warning unconditionally) cases, there is no need for special typemaps in C, the parameters can be just used directly, so this warning is harmless but it was given many times during the test suite execution, distracting from more important messages.
This commit is contained in:
parent
806f79de14
commit
160074a025
1 changed files with 4 additions and 0 deletions
|
|
@ -115,6 +115,10 @@ FAILING_MULTI_CPP_TESTS := \
|
|||
import_stl \
|
||||
template_typedef_import \
|
||||
|
||||
# Ignore warnings about failing to apply typemaps because none are defined:
|
||||
# usually there is no need for special typemaps in C.
|
||||
char_binary.cpptest director_binary_string.cpptest li_typemaps.cpptest li_typemaps_apply.cpptest long_long_apply.cpptest: SWIGOPT += -w453
|
||||
|
||||
include $(srcdir)/../common.mk
|
||||
|
||||
SRCDIR = ../$(srcdir)/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue