Disable testcase 'typemap_variables' for v8.

It uses output typemaps that are not compatible with the
v8 API.
This commit is contained in:
Oliver Buchtala 2013-09-16 11:46:52 +02:00
commit dd4ed7f3d6

View file

@ -62,9 +62,6 @@ CPP_TEST_CASES = \
using2 \
javascript_unicode
BROKEN_TEST_CASES = \
infinity
SKIP_CPP_CASES = @SKIP_CPP_CASES@
SKIP_C_CASES = @SKIP_C_CASES@
SKIP_CPP_STD_CASES = @SKIP_CPP_STD_CASES@
@ -81,6 +78,13 @@ _setup = \
echo "$(ACTION)ing testcase $* under javascript ($(JSENGINE))" ; \
fi;
ifeq (v8,$(ENGINE))
typemap_variables.cpptest:
echo "skipping testcase typemap_variables under javascript (v8)."
endif
ifeq (node,$(JSENGINE))
SWIGOPT += -v8 -DBUILDING_NODE_EXTENSION=1
@ -141,6 +145,7 @@ ifeq (v8,$(ENGINE))
$(_setup)
+$(swig_and_compile_cpp)
$(run_testcase)
endif
ifeq (jsc,$(ENGINE))