tests: Let 'ltorder.sh' run successfully with Guix dynamic loader
[automake.git] / t / help2.sh
blob6c602161042124b6bd2bf36d1a47aa7697882f6f
1 #! /bin/sh
2 # Copyright (C) 2010-2018 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 # Make sure --help and --version work, even when the current directory
18 # contains a broken configure.ac and a broken acinclude.m4.
19 . test-init.sh
21 # Ensure we run in a new, clean directory.
22 mkdir cleandir
23 cd cleandir
25 # Honour user overrides for $ACLOCAL and $AUTOMAKE, but without
26 # adding extra options.
27 ACLOCAL=$am_original_ACLOCAL
28 AUTOMAKE=$am_original_AUTOMAKE
30 echo '[' > configure.ac
31 echo '[' > acinclude.m4
33 $AUTOMAKE --version
34 $AUTOMAKE --help
35 $ACLOCAL --version
36 $ACLOCAL --help
38 # Sanity check: aclocal cannot work with broken acinclude.m4.
39 $ACLOCAL 2>stderr && { cat stderr >&2; exit 1; }
40 cat stderr >&2
41 $FGREP acinclude.m4 stderr
43 rm -f acinclude.m4
45 # Sanity checks: aclocal and automake cannot work with broken configure.ac.
46 $ACLOCAL 2>stderr && { cat stderr >&2; exit 1; }
47 cat stderr >&2
48 $FGREP configure.ac stderr
49 AUTOMAKE_fails
50 $FGREP configure.ac stderr