Skip to content

Commit

Permalink
update binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
fangq committed Aug 22, 2022
1 parent 5ceb714 commit 6608978
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Binary file modified octave/x86_64-pc-linux-gnu/zipmat.mex
Binary file not shown.
8 changes: 4 additions & 4 deletions test/run_zmat_test.m
Expand Up @@ -3,12 +3,12 @@ function run_zmat_test(tests)
% run_zmat_test
% or
% run_zmat_test(tests)
% run_zmat_test({'js','jso','bj','bjo'})
% run_zmat_test({'c','d','err'})
%
% Unit testing for ZMat toolbox
%
% authors:Qianqian Fang (q.fang <at> neu.edu)
% date: 2020/06/08
% date: 2022/08/19
%
% input:
% tests: is a cell array of strings, possible elements include
Expand All @@ -19,11 +19,11 @@ function run_zmat_test(tests)
% license:
% BSD or GPL version 3, see LICENSE_{BSD,GPLv3}.txt files for details
%
% -- this function is part of JSONLab toolbox (http://iso2mesh.sf.net/cgi-bin/index.cgi?zmat)
% -- this function is part of ZMat toolbox (https://github.com/fangq/zmat)
%

if (nargin == 0)
tests = {'c', 'err'};
tests = {'c', 'd', 'err'};
end

%%
Expand Down
2 changes: 1 addition & 1 deletion test/test_zmat.m
Expand Up @@ -13,7 +13,7 @@ function test_zmat(testname, method, input, expected, varargin)
if(strcmp(ME.message, expected))
fprintf(1, 'Testing exception %s: ok\n\toutput:''%s''\n', testname, ME.message);
else
warning('Test exception %s: failed: expected ''%s'', obtained ''%s''', testname, mat2str(expected), ME.message);
warning('Test exception %s: failed: expected ''%s'', obtained ''%s''', testname, expected, ME.message);
end
return;
end
Expand Down

0 comments on commit 6608978

Please sign in to comment.