14 lines
242 B
Matlab
14 lines
242 B
Matlab
# do not dump Octave core
|
|
if exist("crash_dumps_octave_core", "builtin")
|
|
crash_dumps_octave_core(0);
|
|
endif
|
|
|
|
octave_cell_deref;
|
|
|
|
assert(funk("hello"));
|
|
assert(funk({"hello"}));
|
|
|
|
c = func2();
|
|
assert(strcmp(c{1}, "hello"));
|
|
assert(c{2} == 4);
|