Nicolas Joly <[EMAIL PROTECTED]> 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  <[EMAIL PROTECTED]>

        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


Reply via email to