summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test08.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test08.bas')
-rw-r--r--apps/examples/bas/tests/test08.bas24
1 files changed, 0 insertions, 24 deletions
diff --git a/apps/examples/bas/tests/test08.bas b/apps/examples/bas/tests/test08.bas
index 82209c91b..0e6f13ad6 100644
--- a/apps/examples/bas/tests/test08.bas
+++ b/apps/examples/bas/tests/test08.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'DATA, READ and RESTORE... '
-
-cat >test.bas <<eof
10 data "a",b
20 data "c","d
40 read j$
@@ -12,23 +7,4 @@ cat >test.bas <<eof
80 read j$,k$
90 print "j=";j$;" k=";k$
100 next
-eof
-
-cat >test.ref <<'eof'
-j=a
-j=c k=d
-Error: end of `data' in line 80 at:
-80 read j$,k$
- ^
-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