From 0a0743f25cc0bbb395d03a27ac62887c8cbee5cf Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Fri, 9 Sep 2022 08:44:39 +0100 Subject: [PATCH] Temporarily remove Octave concatenation test broken in octave-7.2.0 --- Examples/octave/operator/runme.m | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Examples/octave/operator/runme.m b/Examples/octave/operator/runme.m index d88dcff0b..41c2c14a7 100644 --- a/Examples/octave/operator/runme.m +++ b/Examples/octave/operator/runme.m @@ -46,6 +46,7 @@ if swig_octave_prereq(3,8,0) printf("exp(a) = %s\n", disp(exp(a))); endif -# concatenation operator -g = [a, b, c]; -printf("g = %s\n",disp(g)); +# concatenation operator, note: calls @swig_ref/horzcat.m +# g = [a, b, c]; +# printf("g = %s\n",disp(g)); +# Above temporarily removed as broken in octave-7.2.0, see https://github.com/swig/swig/issues/2353