File: test

package info (click to toggle)
bison 1%3A2.5.dfsg-2.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 15,172 kB
  • sloc: sh: 116,606; ansic: 31,819; lex: 2,200; cpp: 1,356; yacc: 657; java: 564; perl: 450; makefile: 338; sed: 141
file content (31 lines) | stat: -rwxr-xr-x 291 bytes parent folder | download | duplicates (4)
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