Workaround to Octave seg fault on exit in imports testcase only seems to work in 3.1, not 3.2. Just ignore test now

This commit is contained in:
William S Fulton 2013-04-08 21:48:09 +01:00
commit 1fce0bd2b4

View file

@ -1,20 +1,22 @@
# This is the import runtime testcase.
# If imports_b is loaded before imports_a, a seg fault occurred during interpreter cleanup/exit in version 3.1 and 3.2, seems okay in 3.6
imports_a;
imports_b;
# Workaround seg fault occurring during interpreter cleanup/exit in version 3.1 and 3.2, seems okay in 3.6
if (compare_versions(version(), "3.3", ">="))
imports_b;
imports_a;
x = imports_b.B();
x.hello();
x = imports_b.B();
x.hello();
a = imports_a.A();
a = imports_a.A();
c = imports_b.C();
a1 = c.get_a(c);
a2 = c.get_a_type(c);
c = imports_b.C();
a1 = c.get_a(c);
a2 = c.get_a_type(c);
a1.hello();
a2.hello();
assert(swig_this(a1)==swig_this(a2));
assert(strcmp(swig_type(a1),swig_type(a2)));
a1.hello();
a2.hello();
assert(swig_this(a1)==swig_this(a2));
assert(strcmp(swig_type(a1),swig_type(a2)));
endif