summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test02.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test02.bas')
-rw-r--r--apps/examples/bas/tests/test02.bas22
1 files changed, 0 insertions, 22 deletions
diff --git a/apps/examples/bas/tests/test02.bas b/apps/examples/bas/tests/test02.bas
index 88615fa61..cc8b50ebc 100644
--- a/apps/examples/bas/tests/test02.bas
+++ b/apps/examples/bas/tests/test02.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'Array variable assignment... '
-
-cat >test.bas <<eof
10 dim a(1)
20 a(0)=10
30 a(1)=11
@@ -10,21 +5,4 @@ cat >test.bas <<eof
50 print a(0)
60 print a(1)
70 print a
-eof
-
-cat >test.ref <<eof
- 10
- 11
- 12
-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