1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU Bison.
4 # Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 # We need a recent Autotest.
22 m4_version_prereq([2.52g])
25 # AT_DATA_GRAMMAR_PROLOGUE
26 # ------------------------
27 # The prologue that should be included in any grammar which parser is
28 # meant to be compiled.
29 m4_define([AT_DATA_GRAMMAR_PROLOGUE],
33 /* We don't need perfect functions for these tests. */
42 # AT_DATA_GRAMMAR(NAME, CONTENT)
43 # ------------------------------
44 # Generate the file NAME, which CONTENT is preceded by
45 # AT_DATA_GRAMMAR_PROLOGUE.
46 m4_define([AT_DATA_GRAMMAR],
48 [AT_DATA_GRAMMAR_PROLOGUE
53 # AT_COMPILE(OUTPUT, [SOURCES = OUTPUT.c])
54 # ----------------------------------------
55 # Compile SOURCES into OUTPUT. If OUTPUT does not contain '.',
56 # assume that we are linking too; this is a hack.
57 m4_define([AT_COMPILE],
58 [AT_CHECK([$CC $CFLAGS $CPPFLAGS m4_bmatch([$1], [[.]], [], [$LDFLAGS ])m4_default([$2], [$1.c]) m4_bmatch([$1], [[.]], [], [$LIBS ])-o $1],
61 # AT_COMPILE_CXX(OUTPUT, [SOURCES = OUTPUT.c])
62 # --------------------------------------------
63 m4_define([AT_COMPILE_CXX],
64 [AT_CHECK([$CXX $CFLAGS $CPPFLAGS m4_default([$2], [$1.c]) -o $1], 0,
68 # AT_PARSER_CHECK(COMMAND, EXIT-STATUS, EXPOUT, EXPERR)
69 # -----------------------------------------------------
70 # So that we can run `./testsuite PREPARSER='valgrind -q' for instance.
71 m4_define([AT_PARSER_CHECK],
72 [AT_CHECK([$PREPARSER $1], [$2], [$3], [$4])])
78 # Testing resistance to user bugs.
79 m4_include([input.at])
81 # Testing output file names.
82 m4_include([output.at])
84 # Testing the part of the engine that computes FOLLOW etc.
87 # Testing grammar reduction.
88 m4_include([reduce.at])
90 # Testing that #lines are correct.
91 m4_include([synclines.at])
93 # Testing that headers are sane.
94 m4_include([headers.at])
96 # Testing that user actions are properly performed.
97 m4_include([actions.at])
99 # Testing conflicts detection and resolution.
100 m4_include([conflicts.at])
102 # Fulling testing (compilation and execution of the parser) on calc.
103 m4_include([calc.at])
105 # Huge artificial grammars.
106 # Torturing the stack expansion at runtime.
107 m4_include([torture.at])
109 # Checking big, real world grammars.
110 m4_include([existing.at])
113 m4_include([regression.at])
116 # C++ types, simplified
117 m4_include([cxx-type.at])
119 m4_include([glr-regression.at])