summaryrefslogtreecommitdiff
path: root/Examples/octave
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/octave')
-rw-r--r--Examples/octave/module_load/runme.m6
1 files changed, 6 insertions, 0 deletions
diff --git a/Examples/octave/module_load/runme.m b/Examples/octave/module_load/runme.m
index 4942a02de..16b437ee8 100644
--- a/Examples/octave/module_load/runme.m
+++ b/Examples/octave/module_load/runme.m
@@ -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());