summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test38.bas
blob: 3733d0ad4b075d554636530d52d70c5539776f9a (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/sh

echo -n $0: 'MAT REDIM... '

cat >test.bas <<'eof'
dim x(10)
mat read x
mat print x
mat redim x(7)
mat print x
mat redim x(12)
mat print x
data 1,2,3,4,5,6,7,8,9,10
eof

cat >test.ref <<'eof'
 1            
 2            
 3            
 4            
 5            
 6            
 7            
 8            
 9            
 10           
 1            
 2            
 3            
 4            
 5            
 6            
 7            
 1            
 2            
 3            
 4            
 5            
 6            
 7            
 0            
 0            
 0            
 0            
 0            
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