summaryrefslogtreecommitdiff
path: root/apps/interpreters/bas/test/test45
blob: 88878c2d0deb9c5a5f3ebda5b77ec187404d8564 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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