44 lines
428 B
Bash
44 lines
428 B
Bash
#!/bin/sh
|
|
|
|
echo -n $0: 'OPTION BASE... '
|
|
|
|
cat >test.bas <<'eof'
|
|
option base 3
|
|
dim a(3,5)
|
|
a(3,3)=1
|
|
a(3,5)=2
|
|
|
|
print a(3,3)
|
|
print a(3,5)
|
|
|
|
option base -2
|
|
dim b(-1,2)
|
|
b(-2,-2)=10
|
|
b(-1,2)=20
|
|
|
|
print a(3,3)
|
|
print a(3,5)
|
|
print b(-2,-2)
|
|
print b(-1,2)
|
|
eof
|
|
|
|
cat >test.ref <<'eof'
|
|
1
|
|
2
|
|
1
|
|
2
|
|
10
|
|
20
|
|
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
|