X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/e785ccf715929f1571afc185717b661f5f37e5d4..e5655564583f2f704dd85d6f602f5fcd86f87467:/tests/actions.at diff --git a/tests/actions.at b/tests/actions.at index 0e833a39..ee81b2f2 100644 --- a/tests/actions.at +++ b/tests/actions.at @@ -1,21 +1,20 @@ # Executing Actions. -*- Autotest -*- -# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software -# Foundation, Inc. -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. +# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010 +# Free Software Foundation, Inc. +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - +# # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. +# along with this program. If not, see . AT_BANNER([[User Actions.]]) @@ -76,7 +75,7 @@ main (void) } ]]) -AT_CHECK([bison -d -v -o input.c input.y]) +AT_BISON_CHECK([-d -v -o input.c input.y]) AT_COMPILE([input]) AT_PARSER_CHECK([./input], 0, [[0123456789 @@ -154,7 +153,7 @@ main (void) } ]]) -AT_CHECK([bison -d -v -o input.c input.y], 0) +AT_BISON_CHECK([-d -v -o input.c input.y], 0) AT_COMPILE([input]) AT_PARSER_CHECK([./input], 0, [[15 @@ -370,9 +369,9 @@ main (int argc, const char *argv[]) ]]) AT_LALR1_CC_IF( - [AT_CHECK([bison -o input.cc input.y]) + [AT_BISON_CHECK([-o input.cc input.y]) AT_COMPILE_CXX([input])], - [AT_CHECK([bison -o input.c input.y]) + [AT_BISON_CHECK([-o input.c input.y]) AT_COMPILE([input])]) @@ -665,7 +664,7 @@ main (void) } ]]) -AT_CHECK([bison -o input.c input.y]) +AT_BISON_CHECK([-o input.c input.y]) AT_COMPILE([input]) AT_PARSER_CHECK([./input], 1, [[<> destructor for 'd' @ 4. @@ -790,7 +789,7 @@ main (void) } ]]) -AT_CHECK([bison -o input.c input.y]) +AT_BISON_CHECK([-o input.c input.y]) AT_COMPILE([input]) AT_PARSER_CHECK([./input], 1, [[<*>//e destructor. @@ -925,7 +924,7 @@ main (void) } ]]) -AT_CHECK([bison -o input$1.c input$1.y]) +AT_BISON_CHECK([-o input$1.c input$1.y]) AT_COMPILE([input$1]) AT_PARSER_CHECK([./input$1], 0, [[<]]kind[[> for 'E' @ 1. @@ -1025,7 +1024,7 @@ main (void) } ]]) -AT_CHECK([bison -o input.c input.y]) +AT_BISON_CHECK([-o input.c input.y]) AT_COMPILE([input]) AT_PARSER_CHECK([./input], [1], [], [[Starting parse @@ -1136,7 +1135,7 @@ main (void) } ]]) -AT_CHECK([bison -o input.c input.y]) +AT_BISON_CHECK([-o input.c input.y]) AT_COMPILE([input]) AT_CLEANUP @@ -1204,7 +1203,7 @@ main (void) } ]]) -AT_CHECK([bison -o input.c input.y], 0,, +AT_BISON_CHECK([-o input.c input.y], 0,, [[input.y:33.3-23: warning: unset value: $$ input.y:30.3-35.37: warning: unused value: $3 ]]) @@ -1298,7 +1297,7 @@ main (void) } ]]) -AT_CHECK([[bison -o input.c input.y]]) +AT_BISON_CHECK([[-o input.c input.y]]) AT_COMPILE([[input]]) AT_CLEANUP])