summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test22.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test22.bas')
-rw-r--r--apps/examples/bas/tests/test22.bas26
1 files changed, 0 insertions, 26 deletions
diff --git a/apps/examples/bas/tests/test22.bas b/apps/examples/bas/tests/test22.bas
index 73e2317f9..e10b03a14 100644
--- a/apps/examples/bas/tests/test22.bas
+++ b/apps/examples/bas/tests/test22.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'MAT PRINT... '
-
-cat >test.bas <<'eof'
dim a(2,2)
for i=0 to 2
for j=0 to 2
@@ -16,25 +11,4 @@ for j=1 to 2
print
next
mat print using " ##.##";a,a
-eof
-
-cat >test.ref <<'eof'
- 11.00 21.00
- 12.00 22.00
- 11.00 12.00
- 21.00 22.00
-
- 11.00 12.00
- 21.00 22.00
-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