]> git.saurik.com Git - bison.git/blame - examples/calc++/test
Bind examples/calc++ to the package.
[bison.git] / examples / calc++ / test
CommitLineData
0ffd4fd1 1#! /bin/sh
828c373b 2
0ffd4fd1
AD
3set +e
4cat >input <<EOF
5a := 1
6b := 2
7c := 3
8d := a + b * c
9d
10EOF
11
12./calc++ input
13./calc++ -p input
14
15cat >input <<EOF
16a := 1
17d := a + b * c
18EOF
19./calc++ input
20
21set -x
22echo toto
23cat >input <<EOF
24toto := 1
25toto
26EOF
27./calc++ -s input
828c373b
AD
28
29rm input