Mercurial > hg > octave-lyh
annotate scripts/testfun/rundemos.m @ 17260:dac81d4b8ce1
assert.m: Fix typo stopping comparison of imaginary non-infinite values.
* scripts/testfun/assert.m: Fix typo stopping comparison of imaginary
non-infinite values.
author | Rik <rik@octave.org> |
---|---|
date | Wed, 14 Aug 2013 12:05:51 -0700 |
parents | fa14aa77b514 |
children | 2c2a6801cb57 |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
14087
diff
changeset
|
1 ## Copyright (C) 2008-2012 John W. Eaton |
8229 | 2 ## |
3 ## This file is part of Octave. | |
4 ## | |
5 ## Octave is free software; you can redistribute it and/or modify it | |
6 ## under the terms of the GNU General Public License as published by | |
7 ## the Free Software Foundation; either version 3 of the License, or (at | |
8 ## your option) any later version. | |
9 ## | |
10 ## Octave is distributed in the hope that it will be useful, but | |
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 ## General Public License for more details. | |
14 ## | |
15 ## You should have received a copy of the GNU General Public License | |
16 ## along with Octave; see the file COPYING. If not, see | |
17 ## <http://www.gnu.org/licenses/>. | |
18 | |
19 ## -*- texinfo -*- | |
12668
e3dc23f7dd54
doc: Improve a few docstrings related to test functions and directories.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
20 ## @deftypefn {Function File} {} rundemos () |
e3dc23f7dd54
doc: Improve a few docstrings related to test functions and directories.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
21 ## @deftypefnx {Function File} {} rundemos (@var{directory}) |
e3dc23f7dd54
doc: Improve a few docstrings related to test functions and directories.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
22 ## Execute built-in demos for all function files in the specified directory. |
e3dc23f7dd54
doc: Improve a few docstrings related to test functions and directories.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
23 ## If no directory is specified, operate on all directories in Octave's |
e3dc23f7dd54
doc: Improve a few docstrings related to test functions and directories.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
24 ## search path for functions. |
e3dc23f7dd54
doc: Improve a few docstrings related to test functions and directories.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
25 ## @seealso{runtests, path} |
8229 | 26 ## @end deftypefn |
27 | |
28 ## Author: jwe | |
29 | |
30 function rundemos (directory) | |
31 | |
32 if (nargin == 0) | |
16724
b7667fcb9fbc
Substitute ostrsplit() for strsplit().
Ben Abbott <bpabbott@mac.com>
parents:
16403
diff
changeset
|
33 dirs = ostrsplit (path (), pathsep ()); |
8229 | 34 elseif (nargin == 1) |
35 if (is_absolute_filename (directory)) | |
36 dirs = {directory}; | |
17156
fa14aa77b514
Allow relative directory name for rundemos/runtests.
Rik <rik@octave.org>
parents:
16724
diff
changeset
|
37 elseif (is_rooted_relative_filename (directory)) |
fa14aa77b514
Allow relative directory name for rundemos/runtests.
Rik <rik@octave.org>
parents:
16724
diff
changeset
|
38 dirs = {canonicalize_file_name(directory)}; |
8229 | 39 else |
17156
fa14aa77b514
Allow relative directory name for rundemos/runtests.
Rik <rik@octave.org>
parents:
16724
diff
changeset
|
40 if (directory(end) == filesep ()) |
fa14aa77b514
Allow relative directory name for rundemos/runtests.
Rik <rik@octave.org>
parents:
16724
diff
changeset
|
41 directory = directory(1:end-1); |
fa14aa77b514
Allow relative directory name for rundemos/runtests.
Rik <rik@octave.org>
parents:
16724
diff
changeset
|
42 endif |
8229 | 43 fullname = find_dir_in_path (directory); |
44 if (! isempty (fullname)) | |
10549 | 45 dirs = {fullname}; |
8229 | 46 else |
11472
1740012184f9
Use uppercase for variable names in error() strings to match Info documentation. Only m-files done.
Rik <octave@nomad.inbox5.com>
parents:
10635
diff
changeset
|
47 error ("rundemos: DIRECTORY argument must be a valid pathname"); |
8229 | 48 endif |
49 endif | |
50 else | |
51 print_usage (); | |
52 endif | |
53 | |
8231
df28b55d03c0
make rundemos with no arguments work
John W. Eaton <jwe@octave.org>
parents:
8230
diff
changeset
|
54 for i = 1:numel (dirs) |
df28b55d03c0
make rundemos with no arguments work
John W. Eaton <jwe@octave.org>
parents:
8230
diff
changeset
|
55 d = dirs{i}; |
df28b55d03c0
make rundemos with no arguments work
John W. Eaton <jwe@octave.org>
parents:
8230
diff
changeset
|
56 run_all_demos (d); |
df28b55d03c0
make rundemos with no arguments work
John W. Eaton <jwe@octave.org>
parents:
8230
diff
changeset
|
57 endfor |
df28b55d03c0
make rundemos with no arguments work
John W. Eaton <jwe@octave.org>
parents:
8230
diff
changeset
|
58 |
8229 | 59 endfunction |
60 | |
61 function run_all_demos (directory) | |
17156
fa14aa77b514
Allow relative directory name for rundemos/runtests.
Rik <rik@octave.org>
parents:
16724
diff
changeset
|
62 flist = readdir (directory); |
8229 | 63 for i = 1:numel (flist) |
64 f = flist{i}; | |
65 if (length (f) > 2 && strcmp (f((end-1):end), ".m")) | |
66 f = fullfile (directory, f); | |
67 if (has_demos (f)) | |
14087
8782d41893c6
Add try-catch block to rundemos.
Ben Abbott <bpabbott@mac.com>
parents:
13065
diff
changeset
|
68 try |
8782d41893c6
Add try-catch block to rundemos.
Ben Abbott <bpabbott@mac.com>
parents:
13065
diff
changeset
|
69 demo (f); |
8782d41893c6
Add try-catch block to rundemos.
Ben Abbott <bpabbott@mac.com>
parents:
13065
diff
changeset
|
70 catch |
15202
f3b5cadfd6d5
fix missing semicolons in various .m files
John W. Eaton <jwe@octave.org>
parents:
14237
diff
changeset
|
71 printf ("error: %s\n\n", lasterror().message); |
14087
8782d41893c6
Add try-catch block to rundemos.
Ben Abbott <bpabbott@mac.com>
parents:
13065
diff
changeset
|
72 end_try_catch |
10549 | 73 if (i != numel (flist)) |
74 input ("Press <enter> to continue: ", "s"); | |
75 endif | |
8229 | 76 endif |
77 endif | |
78 endfor | |
79 endfunction | |
80 | |
81 function retval = has_demos (f) | |
82 fid = fopen (f); | |
8699
6e764b7317bd
test/fntests.m, scripts/test/demo.m: error on fopen failures
John W. Eaton <jwe@octave.org>
parents:
8245
diff
changeset
|
83 if (f < 0) |
10635
d1978e7364ad
Print name of function in error() string messages.
Rik <octave@nomad.inbox5.com>
parents:
10549
diff
changeset
|
84 error ("rundemos: fopen failed: %s", f); |
8699
6e764b7317bd
test/fntests.m, scripts/test/demo.m: error on fopen failures
John W. Eaton <jwe@octave.org>
parents:
8245
diff
changeset
|
85 else |
6e764b7317bd
test/fntests.m, scripts/test/demo.m: error on fopen failures
John W. Eaton <jwe@octave.org>
parents:
8245
diff
changeset
|
86 str = fscanf (fid, "%s"); |
6e764b7317bd
test/fntests.m, scripts/test/demo.m: error on fopen failures
John W. Eaton <jwe@octave.org>
parents:
8245
diff
changeset
|
87 fclose (fid); |
14214
2fe0f5fa8cc3
Replace to-be-deprecated findstr occurrences with strfind.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
88 retval = strfind (str, "%!demo"); |
8699
6e764b7317bd
test/fntests.m, scripts/test/demo.m: error on fopen failures
John W. Eaton <jwe@octave.org>
parents:
8245
diff
changeset
|
89 endif |
8229 | 90 endfunction |
13065
1ca3cde15b18
codepsprint: tests for testfun functions
John W. Eaton <jwe@octave.org>
parents:
12673
diff
changeset
|
91 |
14214
2fe0f5fa8cc3
Replace to-be-deprecated findstr occurrences with strfind.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
92 |
14237
11949c9795a0
Revamp %!demos in m-files to use Octave coding conventions on spacing, etc.
Rik <octave@nomad.inbox5.com>
parents:
14214
diff
changeset
|
93 %!error rundemos ("foo", 1) |
11949c9795a0
Revamp %!demos in m-files to use Octave coding conventions on spacing, etc.
Rik <octave@nomad.inbox5.com>
parents:
14214
diff
changeset
|
94 %!error <DIRECTORY argument> rundemos ("#_TOTALLY_/_INVALID_/_PATHNAME_#") |
11949c9795a0
Revamp %!demos in m-files to use Octave coding conventions on spacing, etc.
Rik <octave@nomad.inbox5.com>
parents:
14214
diff
changeset
|
95 |