summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test45.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test45.bas')
-rw-r--r--apps/examples/bas/tests/test45.bas22
1 files changed, 0 insertions, 22 deletions
diff --git a/apps/examples/bas/tests/test45.bas b/apps/examples/bas/tests/test45.bas
index 88878c2d0..cea534dda 100644
--- a/apps/examples/bas/tests/test45.bas
+++ b/apps/examples/bas/tests/test45.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'MID$ on left side... '
-
-cat >test.bas <<'eof'
10 mid$(a$,6,4) = "ABCD"
20 print a$
30 a$="0123456789"
@@ -11,21 +6,4 @@ cat >test.bas <<'eof'
60 a$="0123456789"
70 let mid$(a$,6,4) = "ABCD"
80 print a$
-eof
-
-cat >test.ref <<'eof'
-
-01234ABCD9
-01234ABCD9
-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