* tests/torture.at (Unusual Automake input files): Skip if we

detect automake < 1.8.
This commit is contained in:
Ralf Wildenhues 2006-05-09 21:25:42 +00:00
parent 0d53e1a510
commit 1e3f47b346
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-05-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* tests/torture.at (Unusual Automake input files): Skip if we
detect automake < 1.8.
2006-05-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* lib/autoconf/c.m4 (AC_PROG_CC_STDC): If ac_cv_prog_cc_stdc

View File

@ -1004,10 +1004,11 @@ AC_OUTPUT
AT_DATA([HeeHee.am],
[[# Humans do no worse than `GNUmakefile.am'.
AUTOMAKE_OPTIONS = foreign
AUTOMAKE_OPTIONS = foreign 1.8
]])
AT_CHECK([autoreconf -Wall -v -i], 0, [ignore], [ignore])
AT_CHECK([autoreconf -Wall -v -i], 0, [ignore], [stderr],
[AT_CHECK([grep 'require.*1\.8' stderr && exit 77], [1])])
AT_CHECK([test -f HeeHee.in])
AT_CLEANUP