From 45c117fbffbd3ee63fa7013496cc2906406dfddc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Scylla=29?= Date: Fri, 29 Nov 2013 11:44:43 +0100 Subject: [PATCH] Fixed bug in Matlab unitary tests. Wrong dimension for returned infor variable (missing column for execution time). --- matlab/utilities/tests/mtest.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/utilities/tests/mtest.m b/matlab/utilities/tests/mtest.m index 203fa584f..3e27b4d73 100644 --- a/matlab/utilities/tests/mtest.m +++ b/matlab/utilities/tests/mtest.m @@ -59,7 +59,7 @@ if nargout>1 % Third column status of the unitary test (0 if the test fails, 1 otherwise) % Fourth column details about the failure (vector of integers) % Fifth column elapsed time in seconds (cpu time). - info = cell(nn,4); + info = cell(nn,5); end % Perform the tests.