* 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.
This commit is contained in:
Akim Demaille 2003-03-28 17:10:27 +00:00
parent 5e4393abd6
commit 03713b9ea8
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2003-03-28 Akim Demaille <akim@epita.fr>
* 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 <akim@epita.fr>
* doc/autoconf.texi (C Compiler): `#line' portability.

View File

@ -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])