[snip] >>>>> processing /home/rafael/devel/debian/PKGS/octave/octave-3.1.50/src/DLD-FUNCTIONS/dispatch.cc ***** test # replace base m-file echo_to_file ('function a=dispatch_x(a)', "dispatch_x.m"); dispatch('dispatch_x','length','string') assert(dispatch_x(3),3) assert(dispatch_x("a"),1) sleep (2); echo_to_file ('function a=dispatch_x(a),++a;', "dispatch_x.m"); rehash(); assert(dispatch_x(3),4) assert(dispatch_x("a"),1) !!!!! test failed `dispatch_x' undefined near line 0 column 9 [snip] >>>>> processing /home/rafael/devel/debian/PKGS/octave/octave-3.1.50/src/mappers.cc ***** assert(isna (single(NA))); !!!!! test failed assert (isna (single (NA))) failed ***** assert(isna(single([NaN -Inf -1 0 1 Inf NA])), [false, false, false, false, false, false, true]); !!!!! test failed assert (isna (single ([NaN, -Inf, -1, 0, 1, Inf, NA])),[false, false, false, false, false, false, true]) expected 0 0 0 0 0 0 1 but got 0 0 0 0 0 0 0 values do not match [snip]