Mercurial > hg > octave-lyh
changeset 9112:f5b51f54f44e
Remove obsolete comments from test scripts in test
author | Thorsten Meyer <thorsten.meyier@gmx.de> |
---|---|
date | Sun, 12 Apr 2009 22:30:00 +0200 |
parents | 96e7a72be5e7 |
children | 4bb94a71913b |
files | test/ChangeLog test/test_contin.m test/test_error.m test/test_eval-catch.m test/test_for.m test/test_global.m test/test_if.m test/test_index-wfi-f.m test/test_index-wfi-t.m test/test_io.m test/test_logical-wfi-f.m test/test_logical-wfi-t.m test/test_prefer.m test/test_recursion.m test/test_return.m test/test_string.m test/test_struct.m test/test_switch.m test/test_system.m test/test_transpose.m test/test_try.m test/test_unwind.m test/test_while.m |
diffstat | 23 files changed, 10 insertions(+), 44 deletions(-) [+] |
line wrap: on
line diff
--- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,13 @@ +2009-04-12 Thorsten Meyer <thorsten.meyier@gmx.de> + + * test_contin.m, test_error.m, test_eval-catch.m, test_for.m, + test_global.m, test_if.m, test_index-wfi-f.m, + /test_index-wfi-t.m, test_io.m, test_logical-wfi-f.m, + test_logical-wfi-t.m, test_prefer.m, test_recursion.m, + test_return.m, test_string.m, test_struct.m, test_switch.m, + test_system.m, test_transpose.m, test_try.m, test_unwind.m, + test_while.m: Remove obsolete comments. + 2009-04-07 Carlo de Falco <kingcrimson@tiscali.it> * test_io.m: Add a test for saving and reading a matrix with the
--- a/test/test_contin.m +++ b/test/test_contin.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/contin/contin-1.m %!test %! x = [1,2];
--- a/test/test_error.m +++ b/test/test_error.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/error/error-1.m %!function g () %! error ("foo");
--- a/test/test_eval-catch.m +++ b/test/test_eval-catch.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/eval-catch/eval-catch-1.m %!test %! eval ("clear a; a;", "");
--- a/test/test_for.m +++ b/test/test_for.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/for/for-1.m %!test %! for i = 1
--- a/test/test_global.m +++ b/test/test_global.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/global/global-1.m %!test %! global G = 1;
--- a/test/test_if.m +++ b/test/test_if.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/if/if-1.m %!test %! i = 0;
--- a/test/test_index-wfi-f.m +++ b/test/test_index-wfi-f.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/index-wfi-f/s-1.m %!test %! wfi = warning ("query", "Octave:fortran-indexing");
--- a/test/test_index-wfi-t.m +++ b/test/test_index-wfi-t.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/index-wfi-t/s-1.m %!test %! wfi = warning ("query", "Octave:fortran-indexing");
--- a/test/test_io.m +++ b/test/test_io.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - ## FIXME -- we should skip (or mark as an expected failure) the test for ## saving sparse matrices to MAT files when using 64-bit indexing since ## that is not implemented yet.
--- a/test/test_logical-wfi-f.m +++ b/test/test_logical-wfi-f.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/logical-wfi-f/s-1.m %!test %! wfi = warning ("query", "Octave:fortran-indexing");
--- a/test/test_logical-wfi-t.m +++ b/test/test_logical-wfi-t.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/logical-wfi-t/s-1.m %!test %! wfi = warning ("query", "Octave:fortran-indexing");
--- a/test/test_prefer.m +++ b/test/test_prefer.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/prefer/prefer-1.m %!test %! m = [3 2];
--- a/test/test_recursion.m +++ b/test/test_recursion.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/recursion/recursion-1.m %!function y = f (x) %! if (x == 1)
--- a/test/test_return.m +++ b/test/test_return.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/return/return-1.m %!function y = f () %! y = 1;
--- a/test/test_string.m +++ b/test/test_string.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/string/str-esc-1.m %!test %! x = 7;
--- a/test/test_struct.m +++ b/test/test_struct.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/struct/fieldnames-1.m %!test %! s.a = 1;
--- a/test/test_switch.m +++ b/test/test_switch.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/switch/switch-1.m %!test %! a = 1;
--- a/test/test_system.m +++ b/test/test_system.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/system/cputime-1.m %!test %! [t1, u1, s1] = cputime ();
--- a/test/test_transpose.m +++ b/test/test_transpose.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/transpose/transpose-1.m %!test %! scalar = 2;
--- a/test/test_try.m +++ b/test/test_try.m @@ -16,8 +16,6 @@ ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. -%% Automatically generated from DejaGNU files - %% test/octave.test/try/try-1.m %!test %! try