jwe
June 22
The Windows binary files for the 6.2.92 release candidate are on alpha.gnu.org now.
Visit Topic or reply to this email to respond.
On macos 11.4 building with Apple clang version 12.0.5 and gfortran 10.3
I get now
Summary:
PASS 16102
FAIL 3
REGRESSION 1
XFAIL (reported bug) 46
SKIP (missing feature) 37
SKIP (run-time condition) 33
the regression is
>>>>> processing /Users/carlo/Documents/_Programmi/Miei/C/octave/octave-6.2.92/scripts/linear-algebra/logm.m
***** test <*60738>
A = [0.2510, 1.2808, -1.2252; ...
0.2015, 1.0766, 0.5630; ...
-1.9769, -1.0922, -0.5831];
warning ("off", "Octave:logm:non-principal", "local");
assert (expm (logm (A)), A, 40*eps);
!!!!! regression: https://octave.org/testfailure/?60738
ASSERT errors for: assert (expm (logm (A)),A,40 * eps)
Location | Observed | Expected | Reason
(3,1) -1.9769-2.2204e-16i -1.9769 Abs err 1.2881e-14 exceeds tol 8.8818e-15 by 4e-15
(1,2) 1.2808+1.5543e-15i 1.2808 Abs err 1.2311e-14 exceeds tol 8.8818e-15 by 3e-15
(2,2) 1.0766+0i 1.0766 Abs err 1.2879e-14 exceeds tol 8.8818e-15 by 4e-15
(3,2) -1.0922+1.6098e-15i -1.0922 Abs err 1.056e-14 exceeds tol 8.8818e-15 by 2e-15
while the unexpected FAIL are
>>>>> processing /Users/carlo/Documents/_Programmi/Miei/C/octave/octave-6.2.92/test/mex/bug-51725.tst
***** assert (bug_51725 (), [])
!!!!! test failed
'bug_51725' undefined near line 2, column 2
***** error <element number 2 undefined in return list> [x,y,z] = bug_51725 ();
!!!!! error failed.
Expected <element number 2 undefined in return list>, but got <'bug_51725' undefined near line 2, column 2>
>>>>> processing /Users/carlo/Documents/_Programmi/Miei/C/octave/octave-6.2.92/test/mex/bug-54096.tst
***** test
s = bug_54096 ();
assert (s, struct ("field", []));
assert (s.field, []);
!!!!! test failed
'bug_54096' undefined near line 3, column 3
which seem to be the due to the known issue with MEX
c.