maint: Update HACKING
[automake.git] / t / yacc-grepping.sh
blobb45ca7abcc8096daaccf139c02dda4f2443a6079
1 #! /bin/sh
2 # Copyright (C) 1996-2017 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)
7 # any later version.
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, see <https://www.gnu.org/licenses/>.
17 # Some grep-based checks on yacc support:
19 # - Make sure intermediate .c file is built from yacc source.
20 # Report from Thomas Morgan.
22 # - Make sure intermediate .h file is not generated nor removed
23 # if (AM_)?YFLAGS do not contain '-d'.
24 # Requested by Jim Meyering.
26 . test-init.sh
28 cat >> configure.ac << 'END'
29 AC_PROG_CC
30 AC_PROG_YACC
31 END
33 # Run it here once and for all, since we are not going to modify
34 # configure.ac anymore.
35 $ACLOCAL
37 cat > Makefile.am <<'END'
38 bin_PROGRAMS = zardoz
39 zardoz_SOURCES = zardoz.y
40 END
42 # Don't redefine several times the same variable.
43 cp Makefile.am Makefile.src
45 $AUTOMAKE -a
46 $FGREP 'zardoz.c' Makefile.in
47 # If zardoz.h IS mentioned, fail.
48 $FGREP 'zardoz.h' Makefile.in && exit 1
50 cp Makefile.src Makefile.am
51 echo 'AM_YFLAGS = -d' >> Makefile.am
52 $AUTOMAKE
53 $FGREP 'zardoz.c' Makefile.in
54 # If zardoz.h is NOT mentioned, fail.
55 $FGREP 'zardoz.h' Makefile.in
57 cp Makefile.src Makefile.am
58 echo 'AM_YFLAGS = ' >> Makefile.am
59 $AUTOMAKE
60 $FGREP 'zardoz.c' Makefile.in
61 # If zardoz.h IS mentioned, fail.
62 $FGREP 'zardoz.h' Makefile.in && exit 1
64 cp Makefile.src Makefile.am
65 echo 'YFLAGS = -d' >> Makefile.am
66 # YFLAGS is a user variable.
67 AUTOMAKE_fails
68 grep 'YFLAGS.* user variable' stderr
69 grep 'AM_YFLAGS.* instead' stderr
70 $AUTOMAKE -Wno-gnu
71 # If zardoz.h is NOT mentioned, fail.
72 $FGREP 'zardoz.h' Makefile.in
74 cp Makefile.src Makefile.am
75 echo 'YFLAGS = ' >> Makefile.am
76 $AUTOMAKE -Wno-gnu
77 # If zardoz.h IS mentioned, fail.
78 $FGREP 'zardoz.h' Makefile.in && exit 1