summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test13.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test13.bas')
-rw-r--r--apps/examples/bas/tests/test13.bas22
1 files changed, 0 insertions, 22 deletions
diff --git a/apps/examples/bas/tests/test13.bas b/apps/examples/bas/tests/test13.bas
index c4e3e3d2b..e3be7a00b 100644
--- a/apps/examples/bas/tests/test13.bas
+++ b/apps/examples/bas/tests/test13.bas
@@ -1,26 +1,4 @@
-#!/bin/sh
-
-echo -n $0: 'Unnumbered lines... '
-
-cat >test.bas <<'eof'
print "a"
goto 20
print "b"
20 print "c"
-eof
-
-cat >test.ref <<eof
-a
-c
-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