1 # Executing Actions. -*- Autotest -*-
2 # Copyright (C) 2002 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 AT_BANNER([[User Actions.]])
21 # AT_TEST_SYNCLINE(TITLE, INPUT, ERROR-MSG)
22 # -----------------------------------------
23 # Check that compiling the parser produced from INPUT cause GCC
25 m4_define([AT_TEST_SYNCLINE],
28 # I'm not sure I can find a generic scheme to check the location
29 # of an error, so we keep this for GCC only.
30 AT_CHECK([test "$GCC" = yes || exit 77])
35 AT_CHECK([bison input.y -o input.c])
36 AT_CHECK([$CC $CFLAGS $CPPFLAGS input.c -o input], 1, [], [stderr])
37 # In case GCC displays column information, strip it down.
39 # input.y:4:2: #error "4" or input.y:4.2: #error "4"
41 # input.y:4: #error "4"
43 AT_CHECK([[sed 's/^\([^:]*:[^:.]*\)[.:][^:]*:\(.*\)$/\1:\2/' stderr]],
49 ## --------------------- ##
50 ## Prologue synch line. ##
51 ## --------------------- ##
54 AT_TEST_SYNCLINE([Prologue synch line],
57 void yyerror (const char *s);
63 [input.y:2: #error "2"
67 ## ------------------- ##
68 ## %union synch line. ##
69 ## ------------------- ##
71 AT_TEST_SYNCLINE([%union synch line],
76 void yyerror (const char *s);
82 [input.y:2: #error "2"
86 ## ------------------------- ##
87 ## Postprologue synch line. ##
88 ## ------------------------- ##
90 AT_TEST_SYNCLINE([Postprologue synch line],
92 void yyerror (const char *s);
105 [input.y:10: #error "10"
109 ## ------------------- ##
110 ## Action synch line. ##
111 ## ------------------- ##
113 AT_TEST_SYNCLINE([Action synch line],
115 void yyerror (const char *s);
124 [input.y:8: #error "8"
128 ## --------------------- ##
129 ## Epilogue synch line. ##
130 ## --------------------- ##
132 AT_TEST_SYNCLINE([Epilogue synch line],
134 void yyerror (const char *s);
142 [input.y:8: #error "8"