[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [GNU Autoconf 2.59c] testsuite: 57 107 108 109 110 155 171 200 206 f
From: |
Paul Eggert |
Subject: |
Re: [GNU Autoconf 2.59c] testsuite: 57 107 108 109 110 155 171 200 206 failed |
Date: |
Wed, 06 Jul 2005 10:02:56 -0700 |
User-agent: |
Gnus/5.1007 (Gnus v5.10.7) Emacs/21.4 (gnu/linux) |
Nicolas Joly <address@hidden> writes:
> I renamed `config.site' to `config.site.no' and reran the testsuite.
> It solved only the first failure (57: base.at:239 Input/Output) which
> is a testsuite problem; all other failure remains.
Thanks for checking it. I installed the following patch in an attempt
to fix both the problems you reported; does it work for you?
2005-07-06 Paul Eggert <address@hidden>
Fix problems reported by Nicolas Joly.
* tests/base.at (Input/Output): Ignore 'loading site script' chatter.
* tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
They are generated by the Tru64 v5.1B shell.
--- tests/base.at.~1.34.~ 2005-05-14 00:03:33.000000000 -0700
+++ tests/base.at 2005-07-06 09:58:12.000000000 -0700
@@ -244,7 +244,7 @@ AT_DATA([configure.ac],
cat <&AS_ORIGINAL_STDIN_FD >&AS_MESSAGE_FD
]])
AT_CHECK_AUTOCONF
-AT_CHECK([echo Hello | top_srcdir=$abs_top_srcdir ./configure],, [Hello
+AT_CHECK([echo Hello | top_srcdir=$abs_top_srcdir ./configure | grep -v
'configure: loading site script '],, [Hello
])
AT_CHECK([echo Hello | top_srcdir=$abs_top_srcdir ./configure --silent])
--- tests/local.at 24 Jun 2005 00:47:20 -0000 1.18
+++ tests/local.at 6 Jul 2005 16:51:30 -0000
@@ -331,6 +331,7 @@ m4_define([AT_CONFIG_CMP],
do
$SED '/^ac_cv_/ b
/^m4_defn([m4_re_word])=./ !d
+ /^[[^=]]*='\''\''$/ d
/^a[[cs]]_/ d
/^PPID=/ d
/^RANDOM=/ d
- Re: [GNU Autoconf 2.59c] testsuite: 57 107 108 109 110 155 171 200 206 failed,
Paul Eggert <=