summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test19.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test19.bas')
-rw-r--r--apps/examples/bas/tests/test19.bas25
1 files changed, 0 insertions, 25 deletions
diff --git a/apps/examples/bas/tests/test19.bas b/apps/examples/bas/tests/test19.bas
index 9f0a471f4..aa19fa4ae 100644
--- a/apps/examples/bas/tests/test19.bas
+++ b/apps/examples/bas/tests/test19.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'ELSEIF... '
-
-cat >test.bas <<'eof'
for x=1 to 3
if x=1 then
print "1a"
@@ -22,24 +17,4 @@ for x=1 to 3
print "2b"
elseif x=3 then print "3b"
next
-eof
-
-cat >test.ref <<'eof'
-1a
-2a
-3a
-1b
-2b
-3b
-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