Disable warnings for some v8 test-cases.

This commit is contained in:
Oliver Buchtala 2013-09-17 01:53:22 +02:00
commit d34a6da08c

View file

@ -80,9 +80,16 @@ _setup = \
ifeq (v8,$(ENGINE))
# This test can not be run with v8 as it uses v8 API incompatible output typemaps
typemap_variables.cpptest:
echo "skipping testcase typemap_variables under javascript (v8)."
# with v8 we have to generate C++ wrappers only
# these tests did raise warnings which are ignored
nested.ctest: SWIGOPT += -w312,-325
nested_structs.ctest: SWIGOPT += -w312,-325
unions.ctest: SWIGOPT += -w312,-325
endif
ifeq (node,$(JSENGINE))