summaryrefslogtreecommitdiff
path: root/apps/interpreters/bas/test/test22
diff options
context:
space:
mode:
Diffstat (limited to 'apps/interpreters/bas/test/test22')
-rw-r--r--apps/interpreters/bas/test/test2240
1 files changed, 0 insertions, 40 deletions
diff --git a/apps/interpreters/bas/test/test22 b/apps/interpreters/bas/test/test22
deleted file mode 100644
index 73e2317f9..000000000
--- a/apps/interpreters/bas/test/test22
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/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
- a(i,j)=i*10+j
- next
-next
-for j=1 to 2
- for i=1 to 2
- print using " ##.##";a(i,j),
- next
- 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