]> git.saurik.com Git - bison.git/blob - tests/suite.m4
970c43673e9cdbfd1aacad00951d8b921abf23c0
[bison.git] / tests / suite.m4
1 #!/bin/sh
2 # Validation suite for Bison.
3 # Copyright (C) 2000 Free Software Foundation, Inc.
4
5 AT_INIT([bison])
6
7 # AT_INCLUDE([calc.m4])
8
9 AT_SETUP(both)
10 AT_CHECK([echo "stdout" && echo "stderr" >&2], 0, [], [])
11 AT_CLEANUP
12
13 AT_SETUP(err)
14 AT_CHECK([echo "stderr" >&2], 0, [], [])
15 AT_CLEANUP
16
17 AT_SETUP(out)
18 AT_CHECK([echo "stdout"], 0, [], [])
19 AT_CLEANUP