changeset 3193:973954fc757e

[project @ 1998-10-24 02:56:25 by jwe]
author jwe
date Sat, 24 Oct 1998 02:56:25 +0000
parents bdf2186d4592
children bea685644090
files test/ChangeLog test/octave.test/arith/arith.exp test/octave.test/stats/mean-3.m test/octave.test/system/date-1.m
diffstat 4 files changed, 16 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/test/ChangeLog	Fri Oct 23 19:48:01 1998 +0000
+++ b/test/ChangeLog	Sat Oct 24 02:56:25 1998 +0000
@@ -1,3 +1,13 @@
+Fri Oct 23 15:53:01 1998  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* octave.test/arith/exp-5.m: New test.
+
+	* octave.test/stats/mean-3.m: New version of mean accepts a second
+	optional arg.
+
+	* octave.test/system/date-1.m: Correct test for new Y2K-compliant
+	date function.
+
 Wed May 27 00:38:27 1998  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* octave.test/diffeq/dassl-1.m, octave.test/diffeq/dassl-2.m,
--- a/test/octave.test/arith/arith.exp	Fri Oct 23 19:48:01 1998 +0000
+++ b/test/octave.test/arith/arith.exp	Sat Oct 24 02:56:25 1998 +0000
@@ -80,6 +80,10 @@
 set prog_output "error:.*"
 do_test exp-4.m
 
+set test exp-5
+set prog_output "ans = 1"
+do_test exp-5.m
+
 set test fix-1
 set prog_output "ans = 1"
 do_test fix-1.m
--- a/test/octave.test/stats/mean-3.m	Fri Oct 23 19:48:01 1998 +0000
+++ b/test/octave.test/stats/mean-3.m	Sat Oct 24 02:56:25 1998 +0000
@@ -1,1 +1,1 @@
-mean (1, 2)
+mean (1, 2, 3)
--- a/test/octave.test/system/date-1.m	Fri Oct 23 19:48:01 1998 +0000
+++ b/test/octave.test/system/date-1.m	Sat Oct 24 02:56:25 1998 +0000
@@ -1,1 +1,1 @@
-strcmp (date (), strftime ("%d-%b-%y", localtime (time ())))
+strcmp (date (), strftime ("%d-%b-%Y", localtime (time ())))