summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test27.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test27.bas')
-rw-r--r--apps/examples/bas/tests/test27.bas25
1 files changed, 0 insertions, 25 deletions
diff --git a/apps/examples/bas/tests/test27.bas b/apps/examples/bas/tests/test27.bas
index f90c0c236..92ba744a8 100644
--- a/apps/examples/bas/tests/test27.bas
+++ b/apps/examples/bas/tests/test27.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'Matrix inversion... '
-
-cat >test.bas <<'eof'
data 1,2,3,4
mat read a(2,2)
mat print a
@@ -10,24 +5,4 @@ mat b=inv(a)
mat print b
mat c=a*b
mat print c
-eof
-
-cat >test.ref <<'eof'
- 1 2
- 3 4
--2 1
- 1.5 -0.5
- 1 0
- 0 1
-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