summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test43.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test43.bas')
-rw-r--r--apps/examples/bas/tests/test43.bas25
1 files changed, 0 insertions, 25 deletions
diff --git a/apps/examples/bas/tests/test43.bas b/apps/examples/bas/tests/test43.bas
index 56d993a0f..26ac0dd02 100644
--- a/apps/examples/bas/tests/test43.bas
+++ b/apps/examples/bas/tests/test43.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'Matrix multiplication size checks... '
-
-cat >test.bas <<eof
DIM a(3,3),b(3,1),c(3,3)
MAT READ a
MAT READ b
@@ -18,24 +13,4 @@ MAT READ a
MAT READ b
MAT c=a*b
MAT PRINT c
-eof
-
-cat >test.ref <<eof
- 17
- 47
- 77
-Error: Dimension mismatch in line 14 at:
-mat c=a*b
- ^
-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