From: Akim Demaille Date: Fri, 28 Mar 2003 17:10:27 +0000 (+0000) Subject: * tests/torture.at (Configuring subdirectories): Require aclocal X-Git-Tag: AUTOCONF-2.57a~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03713b9ea88cf55dff5dba060fe65a1ff691c5ac;p=thirdparty%2Fautoconf.git * tests/torture.at (Configuring subdirectories): Require aclocal 1.4, otherwise the test fails, as it does support configure.ac. This fixes the "test 40 failed" bug reports. --- diff --git a/ChangeLog b/ChangeLog index b6f96ede9..23e201b64 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-03-28 Akim Demaille + + * tests/torture.at (Configuring subdirectories): Require aclocal + 1.4, otherwise the test fails, as it does support configure.ac. + This fixes the "test 40 failed" bug reports. + 2003-03-28 Akim Demaille * doc/autoconf.texi (C Compiler): `#line' portability. diff --git a/tests/torture.at b/tests/torture.at index cbb306571..b29c08820 100644 --- a/tests/torture.at +++ b/tests/torture.at @@ -1,6 +1,6 @@ # -*- Autotest -*- -# Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -559,7 +559,9 @@ AT_SETUP([Configuring subdirectories]) AT_KEYWORDS(autoreconf) # We use aclocal (via autoreconf). -AT_CHECK([aclocal --version || exit 77], [], [ignore], [ignore]) +AT_CHECK([aclocal --version || exit 77], [], [stdout], [ignore]) +# It should understand configure.ac. +AT_CHECK([grep 1.4 stdout && exit 77], [1], [ignore]) # The contents of `inner/', and `inner/innermost/'. AS_MKDIR_P([inner/innermost])