summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test15.bas
blob: 5d4c7545b9554c444c2223f26b0b2321a2000eef (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
32
33
34
35
36
37
38
39
40
41
#!/bin/sh

echo -n $0: 'FIELD, PUT and GET... '

cat >test.bas <<'eof'
a$="a"
open "r",1,"test.dat",128
print "before field a$=";a$
field #1,10 as a$
field #1,5 as b$,5 as c$
lset b$="hi"
rset c$="ya"
print "a$=";a$
put #1
close #1
print "after close a$=";a$
open "r",2,"test.dat",128
field #2,10 as b$
get #2
print "after get b$=";b$
close #2
kill "test.dat"
eof

cat >test.ref <<eof
before field a$=a
a$=hi      ya
after close a$=
after get b$=hi      ya
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