summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test38.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test38.bas')
-rw-r--r--apps/examples/bas/tests/test38.bas48
1 files changed, 0 insertions, 48 deletions
diff --git a/apps/examples/bas/tests/test38.bas b/apps/examples/bas/tests/test38.bas
index 3733d0ad4..c1b151eee 100644
--- a/apps/examples/bas/tests/test38.bas
+++ b/apps/examples/bas/tests/test38.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'MAT REDIM... '
-
-cat >test.bas <<'eof'
dim x(10)
mat read x
mat print x
@@ -11,47 +6,4 @@ mat print x
mat redim x(12)
mat print x
data 1,2,3,4,5,6,7,8,9,10
-eof
-
-cat >test.ref <<'eof'
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 0
- 0
- 0
- 0
- 0
-eof
-
-sh ./test/runbas test.bas >test.data
-if cmp test.ref test.data
-then
- rm -f test.*
- echo passed
-else
- echo failed
- exit 1
-fi