Fix template_default_cache testcase

This commit is contained in:
William S Fulton 2017-01-16 07:19:05 +00:00
commit 6f54a00db7
4 changed files with 1 additions and 15 deletions

View file

@ -1,10 +0,0 @@
%module amodel;
%inline %{
namespace ns__a {
namespace iface1 {
class Model {};
typedef d::d<Model> ModelPtr;
}
}
%}

View file

@ -407,6 +407,7 @@ CPP_TEST_CASES += \
template_default_arg_overloaded \
template_default_arg_overloaded_extend \
template_default_arg_virtual_destructor \
template_default_cache \
template_default_class_parms \
template_default_class_parms_typedef \
template_default_inherit \
@ -670,7 +671,6 @@ MULTI_CPP_TEST_CASES += \
packageoption \
mod \
template_typedef_import \
template_default_cache \
multi_import
# Custom tests - tests with additional commandline options

View file

@ -1,7 +1,5 @@
%module template_default_cache;
%import "amodel.i"
%inline %{
namespace d {
template< typename T > class d {};

View file

@ -1,2 +0,0 @@
amodel
template_default_cache