summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test11.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test11.bas')
-rw-r--r--apps/examples/bas/tests/test11.bas24
1 files changed, 0 insertions, 24 deletions
diff --git a/apps/examples/bas/tests/test11.bas b/apps/examples/bas/tests/test11.bas
index 88801c730..78eb6d1c6 100644
--- a/apps/examples/bas/tests/test11.bas
+++ b/apps/examples/bas/tests/test11.bas
@@ -1,30 +1,6 @@
-#!/bin/sh
-
-echo -n $0: 'OPEN and LINE INPUT... '
-
-cat >test.bas <<'eof'
10 open "i",1,"test.bas"
20 while not eof(1)
30 line input #1,a$
40 print a$
50 wend
-eof
-
-cat >test.ref <<eof
-10 open "i",1,"test.bas"
-20 while not eof(1)
-30 line input #1,a$
-40 print a$
-50 wend
-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