changeset 11672:a5a86cc9ef38 release-3-0-x

remove obsolete tests
author John W. Eaton <jwe@octave.org>
date Thu, 06 Mar 2008 02:06:17 -0500
parents 1507a9d6df40
children e6364723ae29
files test/ChangeLog test/test_linalg.m test/test_string.m
diffstat 3 files changed, 5 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+2008-03-06  John W. Eaton  <jwe@octave.org>
+
+	* test_string.m: Delete obsolete test for deblank.
+	* test_linalg.m: Delete obsolete test for cond.
+
 2007-12-21  John W. Eaton  <jwe@octave.org>
 
 	Version 3.0.0 released.
--- a/test/test_linalg.m
+++ b/test/test_linalg.m
@@ -27,9 +27,6 @@
 %% test/octave.test/linalg/cond-3.m
 %!error cond ();
 
-%% test/octave.test/linalg/cond-4.m
-%!error cond (1, 2);
-
 %% test/octave.test/linalg/det-1.m
 %!assert(det ([1, 2; 3, 4]) == -2);
 
--- a/test/test_string.m
+++ b/test/test_string.m
@@ -232,9 +232,6 @@
 %% test/octave.test/string/deblank-3.m
 %!error deblank ("foo", "bar");
 
-%% test/octave.test/string/deblank-4.m
-%!error deblank (1);
-
 %% test/octave.test/string/findstr-1.m
 %!assert((findstr ("abababa", "a") == [1, 3, 5, 7]
 %! && findstr ("abababa", "aba") == [1, 3, 5]