changeset 2721:1c256e0e1474

[project @ 1997-02-22 21:00:14 by jwe]
author jwe
date Sat, 22 Feb 1997 21:00:43 +0000
parents 4d964afd8d57
children edf07fea9fa4
files test/octave.test/str-esc/str-esc-1.m test/octave.test/str-esc/str-esc-10.m test/octave.test/str-esc/str-esc-11.m test/octave.test/str-esc/str-esc-12.m test/octave.test/str-esc/str-esc-2.m test/octave.test/str-esc/str-esc-3.m test/octave.test/str-esc/str-esc-4.m test/octave.test/str-esc/str-esc-5.m test/octave.test/str-esc/str-esc-6.m test/octave.test/str-esc/str-esc-7.m test/octave.test/str-esc/str-esc-8.m test/octave.test/str-esc/str-esc-9.m test/octave.test/str-esc/str-esc.exp
diffstat 13 files changed, 0 insertions(+), 95 deletions(-) [+]
line wrap: on
line diff
--- a/test/octave.test/str-esc/str-esc-1.m	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-x = 7;
-if (strcmp ("\a", setstr (x)))
-  printf ("ok\n");
-endif
--- a/test/octave.test/str-esc/str-esc-10.m	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-x = 34;
-if (strcmp ("\"", setstr (x)))
-  printf ("ok\n");
-endif
--- a/test/octave.test/str-esc/str-esc-11.m	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-x = 120;
-if (strcmp ("\x", setstr (x)))
-  printf ("ok\n");
-endif
--- a/test/octave.test/str-esc/str-esc-12.m	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-x = [7, 8, 12, 10, 13, 9, 11, 92, 39, 34];
-if (strcmp ("\a\b\f\n\r\t\v\\\'\"", setstr (x)))
-  printf ("ok\n");
-endif
--- a/test/octave.test/str-esc/str-esc-2.m	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-x = 8;
-if (strcmp ("\b", setstr (x)))
-  printf ("ok\n");
-endif
--- a/test/octave.test/str-esc/str-esc-3.m	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-x = 12;
-if (strcmp ("\f", setstr (x)))
-  printf ("ok\n");
-endif
--- a/test/octave.test/str-esc/str-esc-4.m	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-x = 10;
-if (strcmp ("\n", setstr (x)))
-  printf ("ok\n");
-endif
--- a/test/octave.test/str-esc/str-esc-5.m	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-x = 13;
-if (strcmp ("\r", setstr (x)))
-  printf ("ok\n");
-endif
--- a/test/octave.test/str-esc/str-esc-6.m	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-x = 9;
-if (strcmp ("\t", setstr (x)))
-  printf ("ok\n");
-endif
--- a/test/octave.test/str-esc/str-esc-7.m	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-x = 11;
-if (strcmp ("\v", setstr (x)))
-  printf ("ok\n");
-endif
--- a/test/octave.test/str-esc/str-esc-8.m	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-x = 92;
-if (strcmp ("\\", setstr (x)))
-  printf ("ok\n");
-endif
--- a/test/octave.test/str-esc/str-esc-9.m	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-x = 39;
-if (strcmp ("\'", setstr (x)))
-  printf ("ok\n");
-endif
--- a/test/octave.test/str-esc/str-esc.exp	Sat Feb 22 19:40:49 1997 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,47 +0,0 @@
-set test str-esc-1
-set prog_output "ok"
-do_test str-esc-1.m
-
-set test str-esc-2
-set prog_output "ok"
-do_test str-esc-2.m
-
-set test str-esc-3
-set prog_output "ok"
-do_test str-esc-3.m
-
-set test str-esc-4
-set prog_output "ok"
-do_test str-esc-4.m
-
-set test str-esc-5
-set prog_output "ok"
-do_test str-esc-5.m
-
-set test str-esc-6
-set prog_output "ok"
-do_test str-esc-6.m
-
-set test str-esc-7
-set prog_output "ok"
-do_test str-esc-7.m
-
-set test str-esc-8
-set prog_output "ok"
-do_test str-esc-8.m
-
-set test str-esc-9
-set prog_output "ok"
-do_test str-esc-9.m
-
-set test str-esc-10
-set prog_output "ok"
-do_test str-esc-10.m
-
-set test str-esc-11
-set prog_output ".*unrecognized escape sequence.*"
-do_test str-esc-11.m
-
-set test str-esc-12
-set prog_output "ok"
-do_test str-esc-12.m