Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Side by Side Diff: bison/src/bison/2.4.1/bison-2.4.1-src/examples/calc++/test

Issue 10807020: Add native Windows binary for bison. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #! /bin/sh
2
3 test -z "$VERBOSE" && {
4 exec > /dev/null 2>&1
5 set -x
6 }
7
8 cat >input <<EOF
9 a := 1
10 b := 2
11 c := 3
12 d := a + b * c
13 d
14 EOF
15
16 ./calc++ input
17 ./calc++ -p input
18
19 cat >input <<EOF
20 a := 1
21 d := a + b * c
22 EOF
23 ./calc++ input
24
25 cat >input <<EOF
26 toto := 1
27 toto
28 EOF
29 ./calc++ -s input
30
31 rm input
OLDNEW
« no previous file with comments | « bison/src/bison/2.4.1/bison-2.4.1-src/examples/calc++/stack.hh ('k') | bison/src/bison/2.4.1/bison-2.4.1-src/examples/extexi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698