summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test32.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test32.bas')
-rw-r--r--apps/examples/bas/tests/test32.bas20
1 files changed, 0 insertions, 20 deletions
diff --git a/apps/examples/bas/tests/test32.bas b/apps/examples/bas/tests/test32.bas
index d080d3c27..43fdc4cf5 100644
--- a/apps/examples/bas/tests/test32.bas
+++ b/apps/examples/bas/tests/test32.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'SUB routines... '
-
-cat >test.bas <<'eof'
PUTS("abc")
END
@@ -10,19 +5,4 @@ SUB PUTS(s$)
FOR i=1 to LEN(s$) : print mid$(s$,i,1); : NEXT
PRINT
END SUB
-eof
-
-cat >test.ref <<'eof'
-abc
-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