summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test51.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test51.bas')
-rw-r--r--apps/examples/bas/tests/test51.bas21
1 files changed, 0 insertions, 21 deletions
diff --git a/apps/examples/bas/tests/test51.bas b/apps/examples/bas/tests/test51.bas
index 9341dd09b..503cb2693 100644
--- a/apps/examples/bas/tests/test51.bas
+++ b/apps/examples/bas/tests/test51.bas
@@ -1,23 +1,2 @@
-#!/bin/sh
-
-echo -n $0: 'Print items... '
-
-cat >test.bas <<'eof'
PRINT "Line 1";TAB(78);1.23456789
-eof
-
-cat >test.ref <<'eof'
-Line 1
- 1.234568
-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