maint: Update HACKING
[automake.git] / t / missing-version-mismatch.sh
blob41146746bd13a539c9f81b7a79390406fbafabc2
1 #! /bin/sh
2 # Copyright (C) 2003-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 # Test missing with version mismatches.
19 am_create_testdir=empty
20 . test-init.sh
22 get_shell_script missing
24 do_check ()
26 progname=$1; shift;
27 ./missing "$@" 2>stderr && { cat stderr >&2; exit 1; }
28 cat stderr >&2
29 $FGREP "WARNING: '$progname' is probably too old." stderr
32 echo 'AC_INIT([x], [1.0]) AC_PREREQ([9999])' >> configure.ac
34 do_check autoconf $AUTOCONF
35 do_check autoheader $AUTOHEADER
36 do_check aclocal-$APIVERSION $am_original_ACLOCAL
38 cat > configure.ac << 'END'
39 AC_INIT([x], [0])
40 AM_INIT_AUTOMAKE
41 AC_CONFIG_FILES([Makefile])
42 END
44 echo AUTOMAKE_OPTIONS = 9999.9999 > Makefile.am
45 $ACLOCAL
46 : > install-sh
47 # FIXME: this doesn't work due to a bug in automake (not 'missing').
48 #do_check automake-$APIVERSION $am_original_AUTOMAKE