summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test46.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test46.bas')
-rw-r--r--apps/examples/bas/tests/test46.bas20
1 files changed, 0 insertions, 20 deletions
diff --git a/apps/examples/bas/tests/test46.bas b/apps/examples/bas/tests/test46.bas
index 4537f3e56..f7a08468d 100644
--- a/apps/examples/bas/tests/test46.bas
+++ b/apps/examples/bas/tests/test46.bas
@@ -1,22 +1,2 @@
-#!/bin/sh
-
-echo -n $0: 'END used without program... '
-
-cat >test.bas <<'eof'
for i=1 to 10:print i;:next i:end
-eof
-
-cat >test.ref <<'eof'
- 1 2 3 4 5 6 7 8 9 10
-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