~logan/ubuntu/trusty/suitesparse/4.2.1-3ubuntu1

« back to all changes in this revision

Viewing changes to SuiteSparse_test.m

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2009-02-24 11:08:12 UTC
  • mfrom: (7.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090224110812-hawvr3dh5kjbvlae
debian/control: Add an epoch to the version number of
libsuitesparse-3.0.2 in replaces/conflicts for libcolamd-3.2.0
(really, closes: #516725)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
end
23
23
 
24
24
% if at UF, ensure pre-installed UF Sparse Matrix Collection is used
25
 
uf = { '/cise/homes/davis/Install/UFget', 'd:/UFget', '/share/UFget' } ;
 
25
uf = { '/cise/homes/davis/Install/UFget', 'd:/UFget', '/share/UFget', ...
 
26
    '/windows/UFget' } ;
26
27
for k = 1:length(uf)
27
28
    if (exist (uf {k}, 'dir'))
28
29
        addpath (uf {k}) ;
169
170
 
170
171
    % no exhaustive tests; tested via other packages
171
172
 
172
 
catch
 
173
catch                                                                       %#ok
173
174
 
174
175
    %---------------------------------------------------------------------------
175
176
    % test failure
176
177
    %---------------------------------------------------------------------------
177
178
 
178
179
    cd (SuiteSparse) ;
179
 
    disp (lasterr) ;
 
180
    disp (lasterr) ;                                                        %#ok
180
181
    fprintf ('SuiteSparse test: FAILED\n') ;
181
182
    return
182
183