test harness: improve catching of usage errors in script 'test-driver'
[platform/upstream/automake.git] / t / missing-version-mismatch.sh
1 #! /bin/sh
2 # Copyright (C) 2003-2013 Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Test missing with version mismatches.
18
19 am_create_testdir=empty
20 . test-init.sh
21
22 get_shell_script missing
23
24 do_check ()
25 {
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
30 }
31
32 echo 'AC_INIT([x], [1.0]) AC_PREREQ([9999])' >> configure.ac
33
34 do_check autoconf               $AUTOCONF
35 do_check autoheader             $AUTOHEADER
36 do_check aclocal-$APIVERSION    $am_original_ACLOCAL
37
38 cat > configure.ac << 'END'
39 AC_INIT([x], [0])
40 AM_INIT_AUTOMAKE
41 AC_CONFIG_FILES([Makefile])
42 END
43
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
49
50 :