summaryrefslogtreecommitdiff
path: root/apps/interpreters/bas/test/test45
diff options
context:
space:
mode:
Diffstat (limited to 'apps/interpreters/bas/test/test45')
-rw-r--r--apps/interpreters/bas/test/test4531
1 files changed, 31 insertions, 0 deletions
diff --git a/apps/interpreters/bas/test/test45 b/apps/interpreters/bas/test/test45
new file mode 100644
index 000000000..88878c2d0
--- /dev/null
+++ b/apps/interpreters/bas/test/test45
@@ -0,0 +1,31 @@
+#!/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"
+40 mid$(a$,6,4) = "ABCD"
+50 print a$
+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