summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test47.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test47.bas')
-rw-r--r--apps/examples/bas/tests/test47.bas26
1 files changed, 0 insertions, 26 deletions
diff --git a/apps/examples/bas/tests/test47.bas b/apps/examples/bas/tests/test47.bas
index 13eb94db2..960ac46c5 100644
--- a/apps/examples/bas/tests/test47.bas
+++ b/apps/examples/bas/tests/test47.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'MAT WRITE... '
-
-cat >test.bas <<'eof'
dim a(3,4)
for i=0 to 3
for j=0 to 4
@@ -12,25 +7,4 @@ for i=0 to 3
print
next
mat write a
-eof
-
-cat >test.ref <<'eof'
- 0 1 2 3 4
- 10 11 12 13 14
- 20 21 22 23 24
- 30 31 32 33 34
-11,12,13,14
-21,22,23,24
-31,32,33,34
-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