~ubuntu-branches/ubuntu/natty/suitesparse/natty

« back to all changes in this revision

Viewing changes to CXSparse/MATLAB/Test/testall.m

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2007-05-29 09:36:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529093629-zowquo0b7slkk6nc
Tags: 3.0.0-2
* suitesparse builds properly twice in a row
* Bug fix: "suitesparse - FTBFS: Broken build depens: libgfortran1-dev",
  thanks to Bastian Blank (Closes: #426349).
* Bug fix: "suitesparse_3.0.0-1: FTBFS: build-depends on
  libgfortran1-dev", thanks to Steve Langasek (Closes: #426354).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
function testall
 
2
%TESTALL test all CSparse functions (run tests 1 to 28 below)
 
3
%
 
4
% Example:
 
5
%   testall
 
6
% See also: cs_demo
 
7
 
 
8
%   Copyright 2006-2007, Timothy A. Davis.
 
9
%   http://www.cise.ufl.edu/research/sparse
 
10
 
 
11
clear all
 
12
clear functions
 
13
cs_test_make        % compile all CSparse, Demo, Text, and Test mexFunctions
 
14
 
 
15
fprintf ('\n------------------------ test1  \n') ; test1  ;
 
16
fprintf ('\n------------------------ test2  \n') ; test2  ;
 
17
fprintf ('\n------------------------ test3  \n') ; test3  ;
 
18
fprintf ('\n------------------------ test4  \n') ; test4  ;
 
19
fprintf ('\n------------------------ test5  \n') ; test5  ;
 
20
fprintf ('\n------------------------ test6  \n') ; test6  ;
 
21
fprintf ('\n------------------------ test7  \n') ; test7  ;
 
22
fprintf ('\n------------------------ test8  \n') ; test8  ;
 
23
fprintf ('\n------------------------ test9  \n') ; test9  ;
 
24
fprintf ('\n------------------------ test10 \n') ; test10 ;
 
25
fprintf ('\n------------------------ test11 \n') ; test11 ;
 
26
fprintf ('\n------------------------ test12 \n') ; test12 ;
 
27
fprintf ('\n------------------------ test13 \n') ; test13 ;
 
28
fprintf ('\n------------------------ test14 \n') ; test14 ;
 
29
fprintf ('\n------------------------ test15 \n') ; test15 ;
 
30
fprintf ('\n------------------------ test16 \n') ; test16 ;
 
31
fprintf ('\n------------------------ test17 \n') ; test17 ;
 
32
fprintf ('\n------------------------ test18 \n') ; test18 ;
 
33
fprintf ('\n------------------------ test19 \n') ; test19 ;
 
34
fprintf ('\n------------------------ test20 \n') ; test20 ;
 
35
fprintf ('\n------------------------ test21 \n') ; test21 ;
 
36
fprintf ('\n------------------------ test22 \n') ; test22 ;
 
37
fprintf ('\n------------------------ test23 \n') ; test23 ;
 
38
fprintf ('\n------------------------ test24 \n') ; test24 ;
 
39
fprintf ('\n------------------------ test25 \n') ; test25 ;
 
40
fprintf ('\n------------------------ test26 \n') ; test26 ;
 
41
fprintf ('\n------------------------ test27 \n') ; test27 ;
 
42
fprintf ('\n------------------------ test28 \n') ; test28 ;
 
43
fprintf ('\n------------------------ test_qr\n') ; test_qr ;