summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test26.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test26.bas')
-rw-r--r--apps/examples/bas/tests/test26.bas21
1 files changed, 0 insertions, 21 deletions
diff --git a/apps/examples/bas/tests/test26.bas b/apps/examples/bas/tests/test26.bas
index f7b85687a..8055735a1 100644
--- a/apps/examples/bas/tests/test26.bas
+++ b/apps/examples/bas/tests/test26.bas
@@ -1,26 +1,5 @@
-#!/bin/sh
-
-echo -n $0: 'MAT READ... '
-
-cat >test.bas <<'eof'
dim a(3,3)
data 5,5,5,8,8,8,3,3
mat read a(2,3)
mat print a
-eof
-
-cat >test.ref <<'eof'
- 5 5 5
- 8 8 8
-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