summaryrefslogtreecommitdiff
path: root/examples/calc++/test
blob: 2f8a0454f9e74021d43202d7eabdcb90e92564ca (plain)
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

test -z "$VERBOSE" && {
   exec > /dev/null 2>&1
   set -x
}

cat >input <<EOF
a := 1
b := 2
c := 3
d := a + b * c
d
EOF

./calc++ input
./calc++ -p input

cat >input <<EOF
a := 1
d := a + b * c
EOF
./calc++ input

cat >input <<EOF
toto := 1
toto
EOF
./calc++ -s input

rm input