[octave] skip part of module_load test for older Octaves

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13115 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Karl Wette 2012-05-24 21:18:50 +00:00
commit a276c0b45a

View file

@ -89,6 +89,12 @@ testme
testme
clear all
# octave 3.0.5 randomly crashes on the remaining tests, so skip them
api_version = sscanf(octave_config_info("api_version"), "api-v%i");
if api_version < 37
exit
endif
# access module with no cvar, no global load
example2 = example2;
assert(example2.ivar == example2.ifunc());